@randock/nameshift-api-client 0.0.251 → 0.0.253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.d.ts +1 -0
- package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js +2 -1
- package/dist/models/OrderCompanyInfoDto.d.ts +1 -1
- package/dist/models/SubscriptionCompanyInfoDto.d.ts +1 -1
- package/package.json +1 -1
- package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts +2 -1
- package/src/models/OrderCompanyInfoDto.ts +1 -1
- package/src/models/SubscriptionCompanyInfoDto.ts +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.253
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @randock/nameshift-api-client@0.0.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.253 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
7090b1f98d3a6170fb8791c3b0aa489e7a564a2dbcedc977ca795a7cf2632d9e363c31779cc94132978aa9345126e0ee
|
|
@@ -97,6 +97,7 @@ export declare const IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWi
|
|
|
97
97
|
readonly SEO_METRICS: "SEO_METRICS";
|
|
98
98
|
readonly BANK_PAYOUTS: "BANK_PAYOUTS";
|
|
99
99
|
readonly ZERO_COMMISSION: "ZERO_COMMISSION";
|
|
100
|
+
readonly LEAD_PRICE_NEGOTIATOR_AI_AGENT: "LEAD_PRICE_NEGOTIATOR_AI_AGENT";
|
|
100
101
|
};
|
|
101
102
|
export type IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDtoEnabledFeaturesEnum = typeof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDtoEnabledFeaturesEnum[keyof typeof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDtoEnabledFeaturesEnum];
|
|
102
103
|
/**
|
package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js
CHANGED
|
@@ -33,7 +33,8 @@ exports.IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlag
|
|
|
33
33
|
RENT: 'RENT',
|
|
34
34
|
SEO_METRICS: 'SEO_METRICS',
|
|
35
35
|
BANK_PAYOUTS: 'BANK_PAYOUTS',
|
|
36
|
-
ZERO_COMMISSION: 'ZERO_COMMISSION'
|
|
36
|
+
ZERO_COMMISSION: 'ZERO_COMMISSION',
|
|
37
|
+
LEAD_PRICE_NEGOTIATOR_AI_AGENT: 'LEAD_PRICE_NEGOTIATOR_AI_AGENT'
|
|
37
38
|
};
|
|
38
39
|
/**
|
|
39
40
|
* Check if a given object implements the IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto interface.
|
|
@@ -27,7 +27,7 @@ export interface OrderCompanyInfoDto {
|
|
|
27
27
|
* @type {OrderCompanyTaxIdDto}
|
|
28
28
|
* @memberof OrderCompanyInfoDto
|
|
29
29
|
*/
|
|
30
|
-
taxId: OrderCompanyTaxIdDto;
|
|
30
|
+
taxId: OrderCompanyTaxIdDto | null;
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* Check if a given object implements the OrderCompanyInfoDto interface.
|
|
@@ -27,7 +27,7 @@ export interface SubscriptionCompanyInfoDto {
|
|
|
27
27
|
* @type {SubscriptionCompanyTaxIdDto}
|
|
28
28
|
* @memberof SubscriptionCompanyInfoDto
|
|
29
29
|
*/
|
|
30
|
-
taxId: SubscriptionCompanyTaxIdDto;
|
|
30
|
+
taxId: SubscriptionCompanyTaxIdDto | null;
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* Check if a given object implements the SubscriptionCompanyInfoDto interface.
|
package/package.json
CHANGED
package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts
CHANGED
|
@@ -139,7 +139,8 @@ export const IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatur
|
|
|
139
139
|
RENT: 'RENT',
|
|
140
140
|
SEO_METRICS: 'SEO_METRICS',
|
|
141
141
|
BANK_PAYOUTS: 'BANK_PAYOUTS',
|
|
142
|
-
ZERO_COMMISSION: 'ZERO_COMMISSION'
|
|
142
|
+
ZERO_COMMISSION: 'ZERO_COMMISSION',
|
|
143
|
+
LEAD_PRICE_NEGOTIATOR_AI_AGENT: 'LEAD_PRICE_NEGOTIATOR_AI_AGENT'
|
|
143
144
|
} as const;
|
|
144
145
|
export type IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDtoEnabledFeaturesEnum = typeof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDtoEnabledFeaturesEnum[keyof typeof IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDtoEnabledFeaturesEnum];
|
|
145
146
|
|