Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): api update #45

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 144
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-46f9f5cd233378c33711478e07d227dbe022b1c166fe464bbda48ff4d0cc3561.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-7ec23bc092d14a90d601584d3486b4502e5e3c88523401f443dd5927ec8e019c.yml
6 changes: 3 additions & 3 deletions src/resources/qbd/customers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export interface Customer {
name: string;

/**
* Notes or comments about this customer.
* A note or comment about this customer.
*/
note: string | null;

Expand Down Expand Up @@ -1232,7 +1232,7 @@ export interface CustomerCreateParams {
middleName?: string;

/**
* Body param: Notes or comments about this customer.
* Body param: A note or comment about this customer.
*/
note?: string;

Expand Down Expand Up @@ -1836,7 +1836,7 @@ export interface CustomerUpdateParams {
name?: string;

/**
* Body param: Notes or comments about this customer.
* Body param: A note or comment about this customer.
*/
note?: string;

Expand Down
6 changes: 3 additions & 3 deletions src/resources/qbd/employees.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export interface Employee {
name: string;

/**
* Notes or comments about this employee.
* A note or comment about this employee.
*/
note: string | null;

Expand Down Expand Up @@ -1038,7 +1038,7 @@ export interface EmployeeCreateParams {
mobile?: string;

/**
* Body param: Notes or comments about this employee.
* Body param: A note or comment about this employee.
*/
note?: string;

Expand Down Expand Up @@ -1651,7 +1651,7 @@ export interface EmployeeUpdateParams {
mobile?: string;

/**
* Body param: Notes or comments about this employee.
* Body param: A note or comment about this employee.
*/
note?: string;

Expand Down
6 changes: 3 additions & 3 deletions src/resources/qbd/vendors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export interface Vendor {
nameOnCheck: string | null;

/**
* Notes or comments about this vendor.
* A note or comment about this vendor.
*/
note: string | null;

Expand Down Expand Up @@ -1023,7 +1023,7 @@ export interface VendorCreateParams {
nameOnCheck?: string;

/**
* Body param: Notes or comments about this vendor.
* Body param: A note or comment about this vendor.
*/
note?: string;

Expand Down Expand Up @@ -1497,7 +1497,7 @@ export interface VendorUpdateParams {
nameOnCheck?: string;

/**
* Body param: Notes or comments about this vendor.
* Body param: A note or comment about this vendor.
*/
note?: string;

Expand Down