@flowio/api-internal-sdk 0.0.144 → 0.0.146

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.
@@ -248,38 +248,6 @@ var AuthorizedChargeStatusesResource = /** @class */ (function (_super) {
248
248
  return AuthorizedChargeStatusesResource;
249
249
  }($Resource));
250
250
  export { AuthorizedChargeStatusesResource };
251
- var BackfillsResource = /** @class */ (function (_super) {
252
- __extends(BackfillsResource, _super);
253
- function BackfillsResource() {
254
- return _super !== null && _super.apply(this, arguments) || this;
255
- }
256
- BackfillsResource.prototype.putCumulativeAndDaily = function (params) {
257
- return this.client.request({
258
- body: params.body,
259
- endpoint: '/experiment-engine/backfill/cumulative/daily',
260
- headers: params.headers,
261
- method: 'PUT',
262
- });
263
- };
264
- BackfillsResource.prototype.putDaily = function (params) {
265
- return this.client.request({
266
- body: params.body,
267
- endpoint: '/experiment-engine/backfill/daily',
268
- headers: params.headers,
269
- method: 'PUT',
270
- });
271
- };
272
- BackfillsResource.prototype.putTotalsAndDaily = function (params) {
273
- return this.client.request({
274
- body: params.body,
275
- endpoint: '/experiment-engine/backfill/totals/daily',
276
- headers: params.headers,
277
- method: 'PUT',
278
- });
279
- };
280
- return BackfillsResource;
281
- }($Resource));
282
- export { BackfillsResource };
283
251
  var BankPaymentsResource = /** @class */ (function (_super) {
284
252
  __extends(BankPaymentsResource, _super);
285
253
  function BankPaymentsResource() {
@@ -1552,6 +1520,22 @@ var ClassificationTaxonomyResource = /** @class */ (function (_super) {
1552
1520
  return ClassificationTaxonomyResource;
1553
1521
  }($Resource));
1554
1522
  export { ClassificationTaxonomyResource };
1523
+ var CliLogEntriesResource = /** @class */ (function (_super) {
1524
+ __extends(CliLogEntriesResource, _super);
1525
+ function CliLogEntriesResource() {
1526
+ return _super !== null && _super.apply(this, arguments) || this;
1527
+ }
1528
+ CliLogEntriesResource.prototype.post = function (params) {
1529
+ return this.client.request({
1530
+ body: params.body,
1531
+ endpoint: '/internal/billing/cli/log/entries',
1532
+ headers: params.headers,
1533
+ method: 'POST',
1534
+ });
1535
+ };
1536
+ return CliLogEntriesResource;
1537
+ }($Resource));
1538
+ export { CliLogEntriesResource };
1555
1539
  var ColmItemsResource = /** @class */ (function (_super) {
1556
1540
  __extends(ColmItemsResource, _super);
1557
1541
  function ColmItemsResource() {
@@ -2140,186 +2124,6 @@ var ErpVendorStatusesResource = /** @class */ (function (_super) {
2140
2124
  return ErpVendorStatusesResource;
2141
2125
  }($Resource));
2142
2126
  export { ErpVendorStatusesResource };
2143
- var ExperimentsResource = /** @class */ (function (_super) {
2144
- __extends(ExperimentsResource, _super);
2145
- function ExperimentsResource() {
2146
- return _super !== null && _super.apply(this, arguments) || this;
2147
- }
2148
- ExperimentsResource.prototype.get = function (params) {
2149
- return this.client.request({
2150
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments"),
2151
- headers: params.headers,
2152
- method: 'GET',
2153
- query: {
2154
- id: params.id,
2155
- key: params.key,
2156
- limit: params.limit,
2157
- offset: params.offset,
2158
- sort: params.sort,
2159
- status: params.status,
2160
- },
2161
- });
2162
- };
2163
- /*Add an experiment*/
2164
- ExperimentsResource.prototype.post = function (params) {
2165
- return this.client.request({
2166
- body: params.body,
2167
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments"),
2168
- headers: params.headers,
2169
- method: 'POST',
2170
- });
2171
- };
2172
- ExperimentsResource.prototype.getByKey = function (params) {
2173
- return this.client.request({
2174
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.key)),
2175
- headers: params.headers,
2176
- method: 'GET',
2177
- });
2178
- };
2179
- /*Upsert an experiment*/
2180
- ExperimentsResource.prototype.putByKey = function (params) {
2181
- return this.client.request({
2182
- body: params.body,
2183
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.key)),
2184
- headers: params.headers,
2185
- method: 'PUT',
2186
- });
2187
- };
2188
- ExperimentsResource.prototype.deleteByKey = function (params) {
2189
- return this.client.request({
2190
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.key)),
2191
- headers: params.headers,
2192
- method: 'DELETE',
2193
- });
2194
- };
2195
- /*Update the session query for an experiment*/
2196
- ExperimentsResource.prototype.putSessionAndQueryByKey = function (params) {
2197
- return this.client.request({
2198
- body: params.body,
2199
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.key), "/session/query"),
2200
- headers: params.headers,
2201
- method: 'PUT',
2202
- });
2203
- };
2204
- /*Updates the status of an experiment*/
2205
- ExperimentsResource.prototype.putByKeyAndStatus = function (params) {
2206
- return this.client.request({
2207
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.key), "/").concat(encodeURIComponent(params.status)),
2208
- headers: params.headers,
2209
- method: 'PUT',
2210
- query: {
2211
- activate_variant_id: params.activate_variant_id,
2212
- },
2213
- });
2214
- };
2215
- return ExperimentsResource;
2216
- }($Resource));
2217
- export { ExperimentsResource };
2218
- var ExperimentFormDefaultsResource = /** @class */ (function (_super) {
2219
- __extends(ExperimentFormDefaultsResource, _super);
2220
- function ExperimentFormDefaultsResource() {
2221
- return _super !== null && _super.apply(this, arguments) || this;
2222
- }
2223
- /*For the discriminator 'experience', returns the list of valid experience keys for which we can create an experiment. For the discriminator 'feature', returns the list of valid feature keys for which we can create an experiment*/
2224
- ExperimentFormDefaultsResource.prototype.getDiscriminatorByDiscriminatorKey = function (params) {
2225
- return this.client.request({
2226
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiment/form/defaults/discriminator/").concat(encodeURIComponent(params.discriminator_key)),
2227
- headers: params.headers,
2228
- method: 'GET',
2229
- });
2230
- };
2231
- /*Returns the defaults for the experiment form.*/
2232
- ExperimentFormDefaultsResource.prototype.getDiscriminatorByDiscriminatorKeyAndValue = function (params) {
2233
- return this.client.request({
2234
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiment/form/defaults/discriminator/").concat(encodeURIComponent(params.discriminator_key), "/").concat(encodeURIComponent(params.value)),
2235
- headers: params.headers,
2236
- method: 'GET',
2237
- });
2238
- };
2239
- /*Returns*/
2240
- ExperimentFormDefaultsResource.prototype.getByExperimentKey = function (params) {
2241
- return this.client.request({
2242
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiment/form/defaults/").concat(encodeURIComponent(params.experiment_key)),
2243
- headers: params.headers,
2244
- method: 'GET',
2245
- });
2246
- };
2247
- return ExperimentFormDefaultsResource;
2248
- }($Resource));
2249
- export { ExperimentFormDefaultsResource };
2250
- var ExperimentMilestonesResource = /** @class */ (function (_super) {
2251
- __extends(ExperimentMilestonesResource, _super);
2252
- function ExperimentMilestonesResource() {
2253
- return _super !== null && _super.apply(this, arguments) || this;
2254
- }
2255
- ExperimentMilestonesResource.prototype.get = function (params) {
2256
- return this.client.request({
2257
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.experiment_key), "/milestone"),
2258
- headers: params.headers,
2259
- method: 'GET',
2260
- query: {
2261
- id: params.id,
2262
- limit: params.limit,
2263
- offset: params.offset,
2264
- sort: params.sort,
2265
- },
2266
- });
2267
- };
2268
- /*Add an experiment_milestone*/
2269
- ExperimentMilestonesResource.prototype.post = function (params) {
2270
- return this.client.request({
2271
- body: params.body,
2272
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.experiment_key), "/milestone"),
2273
- headers: params.headers,
2274
- method: 'POST',
2275
- });
2276
- };
2277
- ExperimentMilestonesResource.prototype.getById = function (params) {
2278
- return this.client.request({
2279
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.experiment_key), "/milestone/").concat(encodeURIComponent(params.id)),
2280
- headers: params.headers,
2281
- method: 'GET',
2282
- });
2283
- };
2284
- /*Update an experiment milestone*/
2285
- ExperimentMilestonesResource.prototype.putById = function (params) {
2286
- return this.client.request({
2287
- body: params.body,
2288
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.experiment_key), "/milestone/").concat(encodeURIComponent(params.id)),
2289
- headers: params.headers,
2290
- method: 'PUT',
2291
- });
2292
- };
2293
- ExperimentMilestonesResource.prototype.deleteById = function (params) {
2294
- return this.client.request({
2295
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiments/").concat(encodeURIComponent(params.experiment_key), "/milestone/").concat(encodeURIComponent(params.id)),
2296
- headers: params.headers,
2297
- method: 'DELETE',
2298
- });
2299
- };
2300
- return ExperimentMilestonesResource;
2301
- }($Resource));
2302
- export { ExperimentMilestonesResource };
2303
- var ExperimentResultsWithTimestampsResource = /** @class */ (function (_super) {
2304
- __extends(ExperimentResultsWithTimestampsResource, _super);
2305
- function ExperimentResultsWithTimestampsResource() {
2306
- return _super !== null && _super.apply(this, arguments) || this;
2307
- }
2308
- ExperimentResultsWithTimestampsResource.prototype.getCumulative = function (params) {
2309
- return this.client.request({
2310
- endpoint: "/".concat(encodeURIComponent(params.organization), "/experiment/").concat(encodeURIComponent(params.key), "/results/cumulative"),
2311
- headers: params.headers,
2312
- method: 'GET',
2313
- query: {
2314
- end: params.end,
2315
- start: params.start,
2316
- timeseries: params.timeseries,
2317
- },
2318
- });
2319
- };
2320
- return ExperimentResultsWithTimestampsResource;
2321
- }($Resource));
2322
- export { ExperimentResultsWithTimestampsResource };
2323
2127
  var ExplicitStatementsResource = /** @class */ (function (_super) {
2324
2128
  __extends(ExplicitStatementsResource, _super);
2325
2129
  function ExplicitStatementsResource() {
@@ -3190,6 +2994,44 @@ var GoogleShoppingSettingsResource = /** @class */ (function (_super) {
3190
2994
  return GoogleShoppingSettingsResource;
3191
2995
  }($Resource));
3192
2996
  export { GoogleShoppingSettingsResource };
2997
+ var HarinathItemsResource = /** @class */ (function (_super) {
2998
+ __extends(HarinathItemsResource, _super);
2999
+ function HarinathItemsResource() {
3000
+ return _super !== null && _super.apply(this, arguments) || this;
3001
+ }
3002
+ HarinathItemsResource.prototype.post = function (params) {
3003
+ return this.client.request({
3004
+ body: params.body,
3005
+ endpoint: '/harinath/items',
3006
+ headers: params.headers,
3007
+ method: 'POST',
3008
+ });
3009
+ };
3010
+ HarinathItemsResource.prototype.getById = function (params) {
3011
+ return this.client.request({
3012
+ endpoint: "/harinath/items/".concat(encodeURIComponent(params.id)),
3013
+ headers: params.headers,
3014
+ method: 'GET',
3015
+ });
3016
+ };
3017
+ HarinathItemsResource.prototype.putById = function (params) {
3018
+ return this.client.request({
3019
+ body: params.body,
3020
+ endpoint: "/harinath/items/".concat(encodeURIComponent(params.id)),
3021
+ headers: params.headers,
3022
+ method: 'PUT',
3023
+ });
3024
+ };
3025
+ HarinathItemsResource.prototype.deleteById = function (params) {
3026
+ return this.client.request({
3027
+ endpoint: "/harinath/items/".concat(encodeURIComponent(params.id)),
3028
+ headers: params.headers,
3029
+ method: 'DELETE',
3030
+ });
3031
+ };
3032
+ return HarinathItemsResource;
3033
+ }($Resource));
3034
+ export { HarinathItemsResource };
3193
3035
  var HarmonizationItemClassificationsResource = /** @class */ (function (_super) {
3194
3036
  __extends(HarmonizationItemClassificationsResource, _super);
3195
3037
  function HarmonizationItemClassificationsResource() {
@@ -3433,6 +3275,27 @@ var InternalPaymentRequestVerificationsResource = /** @class */ (function (_supe
3433
3275
  return InternalPaymentRequestVerificationsResource;
3434
3276
  }($Resource));
3435
3277
  export { InternalPaymentRequestVerificationsResource };
3278
+ var InvariantsResource = /** @class */ (function (_super) {
3279
+ __extends(InvariantsResource, _super);
3280
+ function InvariantsResource() {
3281
+ return _super !== null && _super.apply(this, arguments) || this;
3282
+ }
3283
+ InvariantsResource.prototype.get = function (params) {
3284
+ return this.client.request({
3285
+ endpoint: '/internal/billing/invariants',
3286
+ headers: params.headers,
3287
+ method: 'GET',
3288
+ query: {
3289
+ limit: params.limit,
3290
+ offset: params.offset,
3291
+ since: params.since,
3292
+ sort: params.sort,
3293
+ },
3294
+ });
3295
+ };
3296
+ return InvariantsResource;
3297
+ }($Resource));
3298
+ export { InvariantsResource };
3436
3299
  var InventoryOrganizationSettingsResource = /** @class */ (function (_super) {
3437
3300
  __extends(InventoryOrganizationSettingsResource, _super);
3438
3301
  function InventoryOrganizationSettingsResource() {
@@ -4433,6 +4296,21 @@ var ChannelTokensResource = /** @class */ (function (_super) {
4433
4296
  return ChannelTokensResource;
4434
4297
  }($Resource));
4435
4298
  export { ChannelTokensResource };
4299
+ var LabelTrackingSummariesResource = /** @class */ (function (_super) {
4300
+ __extends(LabelTrackingSummariesResource, _super);
4301
+ function LabelTrackingSummariesResource() {
4302
+ return _super !== null && _super.apply(this, arguments) || this;
4303
+ }
4304
+ LabelTrackingSummariesResource.prototype.getByLabelId = function (params) {
4305
+ return this.client.request({
4306
+ endpoint: "/internal/label_tracking_summary/".concat(encodeURIComponent(params.label_id)),
4307
+ headers: params.headers,
4308
+ method: 'GET',
4309
+ });
4310
+ };
4311
+ return LabelTrackingSummariesResource;
4312
+ }($Resource));
4313
+ export { LabelTrackingSummariesResource };
4436
4314
  var TrackingsResource = /** @class */ (function (_super) {
4437
4315
  __extends(TrackingsResource, _super);
4438
4316
  function TrackingsResource() {
@@ -4695,6 +4573,44 @@ var KeysResource = /** @class */ (function (_super) {
4695
4573
  return KeysResource;
4696
4574
  }($Resource));
4697
4575
  export { KeysResource };
4576
+ var KonstantinItemsResource = /** @class */ (function (_super) {
4577
+ __extends(KonstantinItemsResource, _super);
4578
+ function KonstantinItemsResource() {
4579
+ return _super !== null && _super.apply(this, arguments) || this;
4580
+ }
4581
+ KonstantinItemsResource.prototype.post = function (params) {
4582
+ return this.client.request({
4583
+ body: params.body,
4584
+ endpoint: '/konstantin/items',
4585
+ headers: params.headers,
4586
+ method: 'POST',
4587
+ });
4588
+ };
4589
+ KonstantinItemsResource.prototype.getById = function (params) {
4590
+ return this.client.request({
4591
+ endpoint: "/konstantin/items/".concat(encodeURIComponent(params.id)),
4592
+ headers: params.headers,
4593
+ method: 'GET',
4594
+ });
4595
+ };
4596
+ KonstantinItemsResource.prototype.putById = function (params) {
4597
+ return this.client.request({
4598
+ body: params.body,
4599
+ endpoint: "/konstantin/items/".concat(encodeURIComponent(params.id)),
4600
+ headers: params.headers,
4601
+ method: 'PUT',
4602
+ });
4603
+ };
4604
+ KonstantinItemsResource.prototype.deleteById = function (params) {
4605
+ return this.client.request({
4606
+ endpoint: "/konstantin/items/".concat(encodeURIComponent(params.id)),
4607
+ headers: params.headers,
4608
+ method: 'DELETE',
4609
+ });
4610
+ };
4611
+ return KonstantinItemsResource;
4612
+ }($Resource));
4613
+ export { KonstantinItemsResource };
4698
4614
  var LabProjectSettingsResource = /** @class */ (function (_super) {
4699
4615
  __extends(LabProjectSettingsResource, _super);
4700
4616
  function LabProjectSettingsResource() {
@@ -5004,6 +4920,26 @@ var LogisticsCapabilitiesResource = /** @class */ (function (_super) {
5004
4920
  return LogisticsCapabilitiesResource;
5005
4921
  }($Resource));
5006
4922
  export { LogisticsCapabilitiesResource };
4923
+ var LogisticsPayoutRequestsResource = /** @class */ (function (_super) {
4924
+ __extends(LogisticsPayoutRequestsResource, _super);
4925
+ function LogisticsPayoutRequestsResource() {
4926
+ return _super !== null && _super.apply(this, arguments) || this;
4927
+ }
4928
+ /*Handles a payout request for a order and carrier tracking number*/
4929
+ LogisticsPayoutRequestsResource.prototype.post = function (params) {
4930
+ return this.client.request({
4931
+ body: params.body,
4932
+ endpoint: '/internal/logistics/payout_request',
4933
+ headers: params.headers,
4934
+ method: 'POST',
4935
+ query: {
4936
+ dry_run: params.dry_run,
4937
+ },
4938
+ });
4939
+ };
4940
+ return LogisticsPayoutRequestsResource;
4941
+ }($Resource));
4942
+ export { LogisticsPayoutRequestsResource };
5007
4943
  var LostChargebacksResource = /** @class */ (function (_super) {
5008
4944
  __extends(LostChargebacksResource, _super);
5009
4945
  function LostChargebacksResource() {
@@ -5664,6 +5600,82 @@ var MerchantOfRecordEntitySettingsResource = /** @class */ (function (_super) {
5664
5600
  return MerchantOfRecordEntitySettingsResource;
5665
5601
  }($Resource));
5666
5602
  export { MerchantOfRecordEntitySettingsResource };
5603
+ var MichaelyanItemsResource = /** @class */ (function (_super) {
5604
+ __extends(MichaelyanItemsResource, _super);
5605
+ function MichaelyanItemsResource() {
5606
+ return _super !== null && _super.apply(this, arguments) || this;
5607
+ }
5608
+ MichaelyanItemsResource.prototype.post = function (params) {
5609
+ return this.client.request({
5610
+ body: params.body,
5611
+ endpoint: '/michaelyan/items',
5612
+ headers: params.headers,
5613
+ method: 'POST',
5614
+ });
5615
+ };
5616
+ MichaelyanItemsResource.prototype.getById = function (params) {
5617
+ return this.client.request({
5618
+ endpoint: "/michaelyan/items/".concat(encodeURIComponent(params.id)),
5619
+ headers: params.headers,
5620
+ method: 'GET',
5621
+ });
5622
+ };
5623
+ MichaelyanItemsResource.prototype.putById = function (params) {
5624
+ return this.client.request({
5625
+ body: params.body,
5626
+ endpoint: "/michaelyan/items/".concat(encodeURIComponent(params.id)),
5627
+ headers: params.headers,
5628
+ method: 'PUT',
5629
+ });
5630
+ };
5631
+ MichaelyanItemsResource.prototype.deleteById = function (params) {
5632
+ return this.client.request({
5633
+ endpoint: "/michaelyan/items/".concat(encodeURIComponent(params.id)),
5634
+ headers: params.headers,
5635
+ method: 'DELETE',
5636
+ });
5637
+ };
5638
+ return MichaelyanItemsResource;
5639
+ }($Resource));
5640
+ export { MichaelyanItemsResource };
5641
+ var MiljenkoItemsResource = /** @class */ (function (_super) {
5642
+ __extends(MiljenkoItemsResource, _super);
5643
+ function MiljenkoItemsResource() {
5644
+ return _super !== null && _super.apply(this, arguments) || this;
5645
+ }
5646
+ MiljenkoItemsResource.prototype.post = function (params) {
5647
+ return this.client.request({
5648
+ body: params.body,
5649
+ endpoint: '/miljenko/items',
5650
+ headers: params.headers,
5651
+ method: 'POST',
5652
+ });
5653
+ };
5654
+ MiljenkoItemsResource.prototype.getById = function (params) {
5655
+ return this.client.request({
5656
+ endpoint: "/miljenko/items/".concat(encodeURIComponent(params.id)),
5657
+ headers: params.headers,
5658
+ method: 'GET',
5659
+ });
5660
+ };
5661
+ MiljenkoItemsResource.prototype.putById = function (params) {
5662
+ return this.client.request({
5663
+ body: params.body,
5664
+ endpoint: "/miljenko/items/".concat(encodeURIComponent(params.id)),
5665
+ headers: params.headers,
5666
+ method: 'PUT',
5667
+ });
5668
+ };
5669
+ MiljenkoItemsResource.prototype.deleteById = function (params) {
5670
+ return this.client.request({
5671
+ endpoint: "/miljenko/items/".concat(encodeURIComponent(params.id)),
5672
+ headers: params.headers,
5673
+ method: 'DELETE',
5674
+ });
5675
+ };
5676
+ return MiljenkoItemsResource;
5677
+ }($Resource));
5678
+ export { MiljenkoItemsResource };
5667
5679
  var OnboardingAuditReportsResource = /** @class */ (function (_super) {
5668
5680
  __extends(OnboardingAuditReportsResource, _super);
5669
5681
  function OnboardingAuditReportsResource() {
@@ -7512,6 +7524,22 @@ var ReportSummaryResource = /** @class */ (function (_super) {
7512
7524
  return ReportSummaryResource;
7513
7525
  }($Resource));
7514
7526
  export { ReportSummaryResource };
7527
+ var RescreenRestrictionsProductsResource = /** @class */ (function (_super) {
7528
+ __extends(RescreenRestrictionsProductsResource, _super);
7529
+ function RescreenRestrictionsProductsResource() {
7530
+ return _super !== null && _super.apply(this, arguments) || this;
7531
+ }
7532
+ /*Trigger rescreening for all product restrictions in an organization*/
7533
+ RescreenRestrictionsProductsResource.prototype.post = function (params) {
7534
+ return this.client.request({
7535
+ endpoint: "/jailhouse/restriction/".concat(encodeURIComponent(params.organization), "/rescreen"),
7536
+ headers: params.headers,
7537
+ method: 'POST',
7538
+ });
7539
+ };
7540
+ return RescreenRestrictionsProductsResource;
7541
+ }($Resource));
7542
+ export { RescreenRestrictionsProductsResource };
7515
7543
  var RestrictionCategoriesResource = /** @class */ (function (_super) {
7516
7544
  __extends(RestrictionCategoriesResource, _super);
7517
7545
  function RestrictionCategoriesResource() {
@@ -8600,22 +8628,22 @@ var ShopifyPromotionsResource = /** @class */ (function (_super) {
8600
8628
  return ShopifyPromotionsResource;
8601
8629
  }($Resource));
8602
8630
  export { ShopifyPromotionsResource };
8603
- var ShopifyStorePasswordsResource = /** @class */ (function (_super) {
8604
- __extends(ShopifyStorePasswordsResource, _super);
8605
- function ShopifyStorePasswordsResource() {
8631
+ var ShopifyStoreDetailsResource = /** @class */ (function (_super) {
8632
+ __extends(ShopifyStoreDetailsResource, _super);
8633
+ function ShopifyStoreDetailsResource() {
8606
8634
  return _super !== null && _super.apply(this, arguments) || this;
8607
8635
  }
8608
- /*Returns the temporary password for the Shopify store*/
8609
- ShopifyStorePasswordsResource.prototype.get = function (params) {
8636
+ /*Returns details about the Shopify store*/
8637
+ ShopifyStoreDetailsResource.prototype.get = function (params) {
8610
8638
  return this.client.request({
8611
- endpoint: "/jailhouse/restriction/".concat(encodeURIComponent(params.organization), "/shopify_shop_password"),
8639
+ endpoint: "/jailhouse/restriction/".concat(encodeURIComponent(params.organization), "/shopify_store_detail"),
8612
8640
  headers: params.headers,
8613
8641
  method: 'GET',
8614
8642
  });
8615
8643
  };
8616
- return ShopifyStorePasswordsResource;
8644
+ return ShopifyStoreDetailsResource;
8617
8645
  }($Resource));
8618
- export { ShopifyStorePasswordsResource };
8646
+ export { ShopifyStoreDetailsResource };
8619
8647
  var ShopifyWebhookEventsResource = /** @class */ (function (_super) {
8620
8648
  __extends(ShopifyWebhookEventsResource, _super);
8621
8649
  function ShopifyWebhookEventsResource() {
@@ -9091,6 +9119,44 @@ var TestsResource = /** @class */ (function (_super) {
9091
9119
  return TestsResource;
9092
9120
  }($Resource));
9093
9121
  export { TestsResource };
9122
+ var ThiagoItemsResource = /** @class */ (function (_super) {
9123
+ __extends(ThiagoItemsResource, _super);
9124
+ function ThiagoItemsResource() {
9125
+ return _super !== null && _super.apply(this, arguments) || this;
9126
+ }
9127
+ ThiagoItemsResource.prototype.post = function (params) {
9128
+ return this.client.request({
9129
+ body: params.body,
9130
+ endpoint: '/thiago/items',
9131
+ headers: params.headers,
9132
+ method: 'POST',
9133
+ });
9134
+ };
9135
+ ThiagoItemsResource.prototype.getById = function (params) {
9136
+ return this.client.request({
9137
+ endpoint: "/thiago/items/".concat(encodeURIComponent(params.id)),
9138
+ headers: params.headers,
9139
+ method: 'GET',
9140
+ });
9141
+ };
9142
+ ThiagoItemsResource.prototype.putById = function (params) {
9143
+ return this.client.request({
9144
+ body: params.body,
9145
+ endpoint: "/thiago/items/".concat(encodeURIComponent(params.id)),
9146
+ headers: params.headers,
9147
+ method: 'PUT',
9148
+ });
9149
+ };
9150
+ ThiagoItemsResource.prototype.deleteById = function (params) {
9151
+ return this.client.request({
9152
+ endpoint: "/thiago/items/".concat(encodeURIComponent(params.id)),
9153
+ headers: params.headers,
9154
+ method: 'DELETE',
9155
+ });
9156
+ };
9157
+ return ThiagoItemsResource;
9158
+ }($Resource));
9159
+ export { ThiagoItemsResource };
9094
9160
  var TrackingDebugLabelsResource = /** @class */ (function (_super) {
9095
9161
  __extends(TrackingDebugLabelsResource, _super);
9096
9162
  function TrackingDebugLabelsResource() {
@@ -9103,6 +9169,14 @@ var TrackingDebugLabelsResource = /** @class */ (function (_super) {
9103
9169
  method: 'GET',
9104
9170
  });
9105
9171
  };
9172
+ TrackingDebugLabelsResource.prototype.postForceAndTransitByLabelId = function (params) {
9173
+ return this.client.request({
9174
+ body: params.body,
9175
+ endpoint: "/internal/tracking/debug/labels/".concat(encodeURIComponent(params.label_id), "/force/transit"),
9176
+ headers: params.headers,
9177
+ method: 'POST',
9178
+ });
9179
+ };
9106
9180
  return TrackingDebugLabelsResource;
9107
9181
  }($Resource));
9108
9182
  export { TrackingDebugLabelsResource };
@@ -9438,7 +9512,6 @@ export function createClient(options) {
9438
9512
  alertRequeueSummaries: new AlertRequeueSummariesResource(options),
9439
9513
  allOrganizationsMemberships: new AllOrganizationsMembershipsResource(options),
9440
9514
  authorizedChargeStatuses: new AuthorizedChargeStatusesResource(options),
9441
- backfills: new BackfillsResource(options),
9442
9515
  bankPayments: new BankPaymentsResource(options),
9443
9516
  bankPaymentOrders: new BankPaymentOrdersResource(options),
9444
9517
  bankPaymentStatusImports: new BankPaymentStatusImportsResource(options),
@@ -9477,6 +9550,7 @@ export function createClient(options) {
9477
9550
  classificationRequeueRequests: new ClassificationRequeueRequestsResource(options),
9478
9551
  classificationStatistics: new ClassificationStatisticsResource(options),
9479
9552
  classificationTaxonomy: new ClassificationTaxonomyResource(options),
9553
+ cliLogEntries: new CliLogEntriesResource(options),
9480
9554
  colmItems: new ColmItemsResource(options),
9481
9555
  commercialInvoiceComparisons: new CommercialInvoiceComparisonsResource(options),
9482
9556
  commercialInvoiceSummaries: new CommercialInvoiceSummariesResource(options),
@@ -9499,10 +9573,6 @@ export function createClient(options) {
9499
9573
  erpPriorityFiles: new ErpPriorityFilesResource(options),
9500
9574
  erpPriorityVendors: new ErpPriorityVendorsResource(options),
9501
9575
  erpVendorStatuses: new ErpVendorStatusesResource(options),
9502
- experiments: new ExperimentsResource(options),
9503
- experimentFormDefaults: new ExperimentFormDefaultsResource(options),
9504
- experimentMilestones: new ExperimentMilestonesResource(options),
9505
- experimentResultsWithTimestamps: new ExperimentResultsWithTimestampsResource(options),
9506
9576
  explicitStatements: new ExplicitStatementsResource(options),
9507
9577
  externalFulfillmentProofs: new ExternalFulfillmentProofsResource(options),
9508
9578
  features: new FeaturesResource(options),
@@ -9526,6 +9596,7 @@ export function createClient(options) {
9526
9596
  giftCardPrograms: new GiftCardProgramsResource(options),
9527
9597
  globalSearchResults: new GlobalSearchResultsResource(options),
9528
9598
  googleShoppingSettings: new GoogleShoppingSettingsResource(options),
9599
+ harinathItems: new HarinathItemsResource(options),
9529
9600
  harmonizationItemClassifications: new HarmonizationItemClassificationsResource(options),
9530
9601
  harmonizationThresholds: new HarmonizationThresholdsResource(options),
9531
9602
  harmonizationUnclassifiedStatistics: new HarmonizationUnclassifiedStatisticsResource(options),
@@ -9534,6 +9605,7 @@ export function createClient(options) {
9534
9605
  internalHarmonizationStatistics: new InternalHarmonizationStatisticsResource(options),
9535
9606
  internalPaymentRequests: new InternalPaymentRequestsResource(options),
9536
9607
  internalPaymentRequestVerifications: new InternalPaymentRequestVerificationsResource(options),
9608
+ invariants: new InvariantsResource(options),
9537
9609
  inventoryOrganizationSettings: new InventoryOrganizationSettingsResource(options),
9538
9610
  notificationRequests: new NotificationRequestsResource(options),
9539
9611
  invoiceWebhookResponses: new InvoiceWebhookResponsesResource(options),
@@ -9569,6 +9641,7 @@ export function createClient(options) {
9569
9641
  shopifyLocalizedVariants: new ShopifyLocalizedVariantsResource(options),
9570
9642
  stripeEvents: new StripeEventsResource(options),
9571
9643
  channelTokens: new ChannelTokensResource(options),
9644
+ labelTrackingSummaries: new LabelTrackingSummariesResource(options),
9572
9645
  trackings: new TrackingsResource(options),
9573
9646
  itemClassifications: new ItemClassificationsResource(options),
9574
9647
  itemClassificationSummaries: new ItemClassificationSummariesResource(options),
@@ -9577,6 +9650,7 @@ export function createClient(options) {
9577
9650
  itemSalesMargins: new ItemSalesMarginsResource(options),
9578
9651
  jeanDemoItems: new JeanDemoItemsResource(options),
9579
9652
  keys: new KeysResource(options),
9653
+ konstantinItems: new KonstantinItemsResource(options),
9580
9654
  labProjectSettings: new LabProjectSettingsResource(options),
9581
9655
  labelCreationJobs: new LabelCreationJobsResource(options),
9582
9656
  labelGenerationSettings: new LabelGenerationSettingsResource(options),
@@ -9588,6 +9662,7 @@ export function createClient(options) {
9588
9662
  localizedContents: new LocalizedContentsResource(options),
9589
9663
  localizedItemsExportSettings: new LocalizedItemsExportSettingsResource(options),
9590
9664
  logisticsCapabilities: new LogisticsCapabilitiesResource(options),
9665
+ logisticsPayoutRequests: new LogisticsPayoutRequestsResource(options),
9591
9666
  lostChargebacks: new LostChargebacksResource(options),
9592
9667
  loyaltyPrograms: new LoyaltyProgramsResource(options),
9593
9668
  manualReviewRules: new ManualReviewRulesResource(options),
@@ -9607,6 +9682,8 @@ export function createClient(options) {
9607
9682
  matiasItems: new MatiasItemsResource(options),
9608
9683
  merchantApplicationSummaries: new MerchantApplicationSummariesResource(options),
9609
9684
  merchantOfRecordEntitySettings: new MerchantOfRecordEntitySettingsResource(options),
9685
+ michaelyanItems: new MichaelyanItemsResource(options),
9686
+ miljenkoItems: new MiljenkoItemsResource(options),
9610
9687
  onboardingAuditReports: new OnboardingAuditReportsResource(options),
9611
9688
  onboardingAuditSnapshots: new OnboardingAuditSnapshotsResource(options),
9612
9689
  onboardingOrganizations: new OnboardingOrganizationsResource(options),
@@ -9660,6 +9737,7 @@ export function createClient(options) {
9660
9737
  reports: new ReportsResource(options),
9661
9738
  reportRuleDecisions: new ReportRuleDecisionsResource(options),
9662
9739
  reportSummary: new ReportSummaryResource(options),
9740
+ rescreenRestrictionsProducts: new RescreenRestrictionsProductsResource(options),
9663
9741
  restrictionCategories: new RestrictionCategoriesResource(options),
9664
9742
  restrictionFilters: new RestrictionFiltersResource(options),
9665
9743
  restrictionItems: new RestrictionItemsResource(options),
@@ -9694,7 +9772,7 @@ export function createClient(options) {
9694
9772
  shopifyOrderFulfillmentsSnapshots: new ShopifyOrderFulfillmentsSnapshotsResource(options),
9695
9773
  shopifyOrganizationSettings: new ShopifyOrganizationSettingsResource(options),
9696
9774
  shopifyPromotions: new ShopifyPromotionsResource(options),
9697
- shopifyStorePasswords: new ShopifyStorePasswordsResource(options),
9775
+ shopifyStoreDetails: new ShopifyStoreDetailsResource(options),
9698
9776
  shopifyWebhookEvents: new ShopifyWebhookEventsResource(options),
9699
9777
  shrutiDemoItems: new ShrutiDemoItemsResource(options),
9700
9778
  smpTaxCalculationForms: new SmpTaxCalculationFormsResource(options),
@@ -9709,6 +9787,7 @@ export function createClient(options) {
9709
9787
  taxCalculationForms: new TaxCalculationFormsResource(options),
9710
9788
  techOnboardingDescriptions: new TechOnboardingDescriptionsResource(options),
9711
9789
  tests: new TestsResource(options),
9790
+ thiagoItems: new ThiagoItemsResource(options),
9712
9791
  trackingDebugLabels: new TrackingDebugLabelsResource(options),
9713
9792
  transactions: new TransactionsResource(options),
9714
9793
  transactionAdjustments: new TransactionAdjustmentsResource(options),