@randock/nameshift-api-client 0.0.121 → 0.0.122

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.121
1
+ ## @randock/nameshift-api-client@0.0.122
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.121 --save
39
+ npm install @randock/nameshift-api-client@0.0.122 --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
- d1d513f1badf1c7aa1a02894412a3bd1786f740a8b903a27846662a3b70623bb683c3c924bc82fb4ce56abc12c975655
47
+ 0fdc877bbdb671e0eb59e40dfa013cea45a4387085ed3553645c8d55ea8e6fa8875bb0a925dd5f4f46d7c9f6bd25179b
@@ -57,6 +57,7 @@ export declare const AccountNotificationDtoTypeEnum: {
57
57
  readonly BILLING_INFORMATION_NOT_CONFIGURED: "account.billing_information.not_configured";
58
58
  readonly PAYMENT_PROVIDER_NOT_CONFIGURED: "account.payment_provider.not_configured";
59
59
  readonly PAYMENT_PROVIDER_NOT_ACTIVE: "account.payment_provider.not_active";
60
+ readonly PAYMENT_PROVIDER_WAS_CHANGED: "account.payment_provider.was_changed";
60
61
  };
61
62
  export type AccountNotificationDtoTypeEnum = typeof AccountNotificationDtoTypeEnum[keyof typeof AccountNotificationDtoTypeEnum];
62
63
  /**
@@ -34,7 +34,8 @@ exports.AccountNotificationDtoLevelEnum = {
34
34
  exports.AccountNotificationDtoTypeEnum = {
35
35
  BILLING_INFORMATION_NOT_CONFIGURED: 'account.billing_information.not_configured',
36
36
  PAYMENT_PROVIDER_NOT_CONFIGURED: 'account.payment_provider.not_configured',
37
- PAYMENT_PROVIDER_NOT_ACTIVE: 'account.payment_provider.not_active'
37
+ PAYMENT_PROVIDER_NOT_ACTIVE: 'account.payment_provider.not_active',
38
+ PAYMENT_PROVIDER_WAS_CHANGED: 'account.payment_provider.was_changed'
38
39
  };
39
40
  /**
40
41
  * Check if a given object implements the AccountNotificationDto interface.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.121",
3
+ "version": "0.0.122",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -70,7 +70,8 @@ export type AccountNotificationDtoLevelEnum = typeof AccountNotificationDtoLevel
70
70
  export const AccountNotificationDtoTypeEnum = {
71
71
  BILLING_INFORMATION_NOT_CONFIGURED: 'account.billing_information.not_configured',
72
72
  PAYMENT_PROVIDER_NOT_CONFIGURED: 'account.payment_provider.not_configured',
73
- PAYMENT_PROVIDER_NOT_ACTIVE: 'account.payment_provider.not_active'
73
+ PAYMENT_PROVIDER_NOT_ACTIVE: 'account.payment_provider.not_active',
74
+ PAYMENT_PROVIDER_WAS_CHANGED: 'account.payment_provider.was_changed'
74
75
  } as const;
75
76
  export type AccountNotificationDtoTypeEnum = typeof AccountNotificationDtoTypeEnum[keyof typeof AccountNotificationDtoTypeEnum];
76
77