You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/_includes/graphql/company.md
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -7,20 +7,20 @@ Attribute | Data type | Description
7
7
`credit` | CompanyCredit! | The company credit balance
8
8
`credit_history(filter: CompanyCreditHistoryFilterInput, pageSize: Int = 20, currentPage: Int = 1)` | CompanyCreditHistory! | A history of company credit operations
9
9
`email` | String | The email address of the company contact
10
-
`id` | ID! | The ID assigned to the company
10
+
`id` | ID! | The unique ID of a `Company` object
11
11
`legal_address` | [CompanyLegalAddress](#CompanyLegalAddress) | The address where the company is registered to conduct business
12
12
`legal_name` | String | The full legal name of the company
13
13
`name` | String | The name of the company
14
14
`payment_methods` | [String] | The list of payment methods available to a company
15
15
`reseller_id` | String | The resale number that is assigned to the company for tax reporting purposes
16
-
`role(id: ID!)` | [CompanyRole](#CompanyRole) | Returns information about the specified company role
16
+
`role(id: ID!)` | [CompanyRole](#CompanyRole) | Returns a company role filtered by the unique ID for a `CompanyRole` object
17
17
`roles(pageSize: Int = 20, currentPage: Int = 1 )` | [CompanyRoles!](#CompanyRoles) | Returns the list of company roles
18
18
`sales_representative` | [CompanySalesRepresentative](#CompanySalesRepresentative) | The company sales representative
19
19
`structure(rootId: ID = 0 depth: Int = 10 )` | [CompanyStructure](#CompanyStructure) | Returns the company structure of teams and customers in depth-first order
20
-
`team(id: ID!)` | [CompanyTeam](#CompanyTeam) | Returns the specified company team
21
-
`user(id: ID!)` | [Customer]({{page.baseurl}}/graphql/queries/customer.html) | Returns the specified company user
22
-
`users(filter: CompanyUsersFilterInput, pageSize: Int = 20, currentPage: Int = 1)`| [CompanyUsers](#CompanyUsers) | Returns the company users that match the specified filter
23
-
`vat_id` | String | The value-added tax number that is assigned to the company by some jurisdictions for tax reporting purposes
20
+
`team(id: ID!)` | [CompanyTeam](#CompanyTeam) | Returns company team data filtered by the unique ID for a `CompanyTeam` object
21
+
`user(id: ID!)` | [Customer]({{page.baseurl}}/graphql/queries/customer.html) | Returns a company user filtered by the unique ID for a `Customer` object
22
+
`users(filter: CompanyUsersFilterInput, pageSize: Int = 20, currentPage: Int = 1)`| [CompanyUsers](#CompanyUsers) | Returns a list of company users based on activity status
23
+
`vat_tax_id` | String | The value-added tax number that is assigned to the company by some jurisdictions for tax reporting purposes
Copy file name to clipboardExpand all lines: src/_includes/graphql/create-customer.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Attribute | Data Type | Description
2
2
--- | --- | ---
3
-
`date_of_birth` | String | The customer’s date of birth
3
+
`date_of_birth` | String | The customer’s date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
4
4
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer’s date of birth
5
5
`email` | String | The customer’s email address. Required to create a customer
6
6
`firstname` | String | The customer’s first name. Required to create a customer
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-input-24.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressInput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
-
`date_of_birth` | String | The customer's date of birth
5
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
6
6
`default_billing` | String | The ID assigned to the billing address
7
7
`default_shipping` | String | The ID assigned to the shipping address
8
8
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-input.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressInput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
-
`date_of_birth` | String | The customer's date of birth
5
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
6
6
`default_billing` | String | The ID assigned to the billing address
7
7
`default_shipping` | String | The ID assigned to the shipping address
8
8
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-output-24.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Attribute | Data Type | Description
19
19
`addresses` | {{ customeraddress_text }} | An array containing the customer's shipping and billing addresses
20
20
`allow_remote_shopping_assistance` | Boolean! | Indicates whether the customer has enabled remote shopping assistance
21
21
`created_at` | String | Timestamp indicating when the account was created
22
-
`date_of_birth` | String | The customer's date of birth
22
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
23
23
`default_billing` | String | The ID assigned to the billing address
24
24
`default_shipping` | String | The ID assigned to the shipping address
25
25
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-output.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressOutput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
-
`date_of_birth` | String | The customer's date of birth
5
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
6
6
`default_billing` | String | The ID assigned to the billing address
7
7
`default_shipping` | String | The ID assigned to the shipping address
8
8
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/compliance/privacy/pi-data-reference-m2.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ Magento 2 primarily stores customer-specific information in customer, address, o
45
45
46
46
### Customer data {#customer-data}
47
47
48
-
Magento 2 stores the following customer attributes:
48
+
Magento 2 can be figured to store the following customer attributes:
49
49
50
50
- Date of Birth
51
51
- Email
@@ -56,6 +56,9 @@ Magento 2 stores the following customer attributes:
56
56
- Name Prefix
57
57
- Name Suffix
58
58
59
+
{:.bs-callout-info}
60
+
In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
61
+
59
62
#### `customer_entity` and 'customer_entity' references
60
63
61
64
The following columns in the `customer_entity` table contain customer information:
Show Date of Birth | `customer/address/dob_show`| <!--  --> |
408
+
Show Date of Birth | `customer/address/dob_show`<br>In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.| <!--  --> |
409
409
Show Tax/VAT Number | `customer/address/taxvat_show` | <!--  --> |
Copy file name to clipboardExpand all lines: src/guides/v2.3/extension-dev-guide/configuration/sensitive-and-environment-settings.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,9 @@ Examples of sensitive information include:
28
28
* E-mail addresses
29
29
* Any personally identifiable information (e.g., address, phone number, date of birth, government identification number, etc.)
30
30
31
+
{:.bs-callout-info}
32
+
In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
33
+
31
34
### Environment or system-specific values
32
35
33
36
_Environment_ or _system-specific_ values are unique to the system where Magento is deployed.
Copy file name to clipboardExpand all lines: src/guides/v2.3/frontend-dev-guide/themes/theme-structure.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -282,7 +282,7 @@ The key difference between static files and other theme files is that static fil
282
282
Static view files that can be accessed by a direct link from the storefront, are distinguished as public theme files.
283
283
284
284
{:.bs-callout-info}
285
-
To be actually accessible for browsers public static files are [published]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-static-view.html#config-cli-static-overview) to the `/pub/static/frontend/<Vendor>/<theme>/<language>/css/` directory.
285
+
To be actually accessible for browsers public static files are [published]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-static-view.html#config-cli-static-overview) to the `/pub/static/frontend/<Vendor>/<theme>/<locale>/css/` directory.
Copy file name to clipboardExpand all lines: src/guides/v2.3/graphql/develop/resolvers.md
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -284,14 +284,17 @@ input CustomerInput {
284
284
lastname: String @doc(description: "The customer's family name")
285
285
suffix: String @doc(description: "A value such as Sr., Jr., or III")
286
286
email: String @doc(description: "The customer's email address. Required")
287
-
date_of_birth: String @doc(description: "The customer's date of birth")
287
+
date_of_birth: String @doc(description: "The customer's date of birth.")
288
288
taxvat: String @doc(description: "The customer's Tax/VAT number (for corporate customers)")
289
289
gender: Int @doc(description: "The customer's gender(Male - 1, Female - 2)")
290
290
password: String @doc(description: "The customer's password")
291
291
is_subscribed: Boolean @doc(description: "Indicates whether the customer is subscribed to the company's newsletter")
292
292
}
293
293
```
294
294
295
+
{:.bs-callout-info}
296
+
In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
297
+
295
298
The `createCustomer` mutation returns `CustomerOutput` object
296
299
297
300
```text
@@ -319,7 +322,9 @@ type Customer @doc(description: "Customer defines the customer name and address
319
322
addresses: [CustomerAddress] @doc(description: "An array containing the customer's shipping and billing addresses")
320
323
gender: Int @doc(description: "The customer's gender (Male - 1, Female - 2)")
321
324
}
322
-
```
325
+
326
+
{:.bs-callout-info}
327
+
In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
323
328
324
329
The following example shows the `createCustomer` mutation in action:
0 commit comments