@dynamic-labs/sdk-api-core 0.0.568 → 0.0.569
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/package.json
CHANGED
package/src/models/Provider.cjs
CHANGED
|
@@ -36,6 +36,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
'baseAuthUrl': !runtime.exists(json, 'baseAuthUrl') ? undefined : json['baseAuthUrl'],
|
|
37
37
|
'appleKeyId': !runtime.exists(json, 'appleKeyId') ? undefined : json['appleKeyId'],
|
|
38
38
|
'appleTeamId': !runtime.exists(json, 'appleTeamId') ? undefined : json['appleTeamId'],
|
|
39
|
+
'shopifyStore': !runtime.exists(json, 'shopifyStore') ? undefined : json['shopifyStore'],
|
|
39
40
|
'accountSid': !runtime.exists(json, 'accountSid') ? undefined : json['accountSid'],
|
|
40
41
|
'twilioNumber': !runtime.exists(json, 'twilioNumber') ? undefined : json['twilioNumber'],
|
|
41
42
|
'enabledCountries': !runtime.exists(json, 'enabledCountries') ? undefined : (json['enabledCountries'].map(SmsCountryCode.SmsCountryCodeFromJSON)),
|
|
@@ -70,6 +71,7 @@ function ProviderToJSON(value) {
|
|
|
70
71
|
'baseAuthUrl': value.baseAuthUrl,
|
|
71
72
|
'appleKeyId': value.appleKeyId,
|
|
72
73
|
'appleTeamId': value.appleTeamId,
|
|
74
|
+
'shopifyStore': value.shopifyStore,
|
|
73
75
|
'accountSid': value.accountSid,
|
|
74
76
|
'twilioNumber': value.twilioNumber,
|
|
75
77
|
'enabledCountries': value.enabledCountries === undefined ? undefined : (value.enabledCountries.map(SmsCountryCode.SmsCountryCodeToJSON)),
|
package/src/models/Provider.d.ts
CHANGED
|
@@ -118,6 +118,12 @@ export interface Provider {
|
|
|
118
118
|
* @memberof Provider
|
|
119
119
|
*/
|
|
120
120
|
appleTeamId?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Shopify store required for Shopify Oauth2 applications.
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof Provider
|
|
125
|
+
*/
|
|
126
|
+
shopifyStore?: string;
|
|
121
127
|
/**
|
|
122
128
|
* Required to initialize Twilio provider.
|
|
123
129
|
* @type {string}
|
package/src/models/Provider.js
CHANGED
|
@@ -32,6 +32,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
'baseAuthUrl': !exists(json, 'baseAuthUrl') ? undefined : json['baseAuthUrl'],
|
|
33
33
|
'appleKeyId': !exists(json, 'appleKeyId') ? undefined : json['appleKeyId'],
|
|
34
34
|
'appleTeamId': !exists(json, 'appleTeamId') ? undefined : json['appleTeamId'],
|
|
35
|
+
'shopifyStore': !exists(json, 'shopifyStore') ? undefined : json['shopifyStore'],
|
|
35
36
|
'accountSid': !exists(json, 'accountSid') ? undefined : json['accountSid'],
|
|
36
37
|
'twilioNumber': !exists(json, 'twilioNumber') ? undefined : json['twilioNumber'],
|
|
37
38
|
'enabledCountries': !exists(json, 'enabledCountries') ? undefined : (json['enabledCountries'].map(SmsCountryCodeFromJSON)),
|
|
@@ -66,6 +67,7 @@ function ProviderToJSON(value) {
|
|
|
66
67
|
'baseAuthUrl': value.baseAuthUrl,
|
|
67
68
|
'appleKeyId': value.appleKeyId,
|
|
68
69
|
'appleTeamId': value.appleTeamId,
|
|
70
|
+
'shopifyStore': value.shopifyStore,
|
|
69
71
|
'accountSid': value.accountSid,
|
|
70
72
|
'twilioNumber': value.twilioNumber,
|
|
71
73
|
'enabledCountries': value.enabledCountries === undefined ? undefined : (value.enabledCountries.map(SmsCountryCodeToJSON)),
|