@flowio/api-internal-sdk 0.0.115 → 0.0.116
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/dist/cjs/api-internal.js
CHANGED
|
@@ -3518,17 +3518,17 @@ var OnboardingStatesResource = /** @class */ (function (_super) {
|
|
|
3518
3518
|
method: 'PUT',
|
|
3519
3519
|
});
|
|
3520
3520
|
};
|
|
3521
|
-
OnboardingStatesResource.prototype.
|
|
3521
|
+
OnboardingStatesResource.prototype.putBlock = function (params) {
|
|
3522
3522
|
return this.client.request({
|
|
3523
3523
|
body: params.body,
|
|
3524
|
-
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/
|
|
3524
|
+
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/block"),
|
|
3525
3525
|
headers: params.headers,
|
|
3526
3526
|
method: 'PUT',
|
|
3527
3527
|
});
|
|
3528
3528
|
};
|
|
3529
|
-
OnboardingStatesResource.prototype.
|
|
3529
|
+
OnboardingStatesResource.prototype.putUnblock = function (params) {
|
|
3530
3530
|
return this.client.request({
|
|
3531
|
-
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/
|
|
3531
|
+
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/unblock"),
|
|
3532
3532
|
headers: params.headers,
|
|
3533
3533
|
method: 'PUT',
|
|
3534
3534
|
});
|
package/dist/esm/api-internal.js
CHANGED
|
@@ -3482,17 +3482,17 @@ var OnboardingStatesResource = /** @class */ (function (_super) {
|
|
|
3482
3482
|
method: 'PUT',
|
|
3483
3483
|
});
|
|
3484
3484
|
};
|
|
3485
|
-
OnboardingStatesResource.prototype.
|
|
3485
|
+
OnboardingStatesResource.prototype.putBlock = function (params) {
|
|
3486
3486
|
return this.client.request({
|
|
3487
3487
|
body: params.body,
|
|
3488
|
-
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/
|
|
3488
|
+
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/block"),
|
|
3489
3489
|
headers: params.headers,
|
|
3490
3490
|
method: 'PUT',
|
|
3491
3491
|
});
|
|
3492
3492
|
};
|
|
3493
|
-
OnboardingStatesResource.prototype.
|
|
3493
|
+
OnboardingStatesResource.prototype.putUnblock = function (params) {
|
|
3494
3494
|
return this.client.request({
|
|
3495
|
-
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/
|
|
3495
|
+
endpoint: "/internal/".concat(encodeURIComponent(params.organization), "/onboarding/state/unblock"),
|
|
3496
3496
|
headers: params.headers,
|
|
3497
3497
|
method: 'PUT',
|
|
3498
3498
|
});
|
|
@@ -1694,12 +1694,12 @@ export interface OnboardingStatesPutParameters {
|
|
|
1694
1694
|
headers?: $HttpHeaders;
|
|
1695
1695
|
organization: string;
|
|
1696
1696
|
}
|
|
1697
|
-
export interface
|
|
1697
|
+
export interface OnboardingStatesPutBlockParameters {
|
|
1698
1698
|
body: io.flow.internal.v0.models.SetupBlockPutForm;
|
|
1699
1699
|
headers?: $HttpHeaders;
|
|
1700
1700
|
organization: string;
|
|
1701
1701
|
}
|
|
1702
|
-
export interface
|
|
1702
|
+
export interface OnboardingStatesPutUnblockParameters {
|
|
1703
1703
|
headers?: $HttpHeaders;
|
|
1704
1704
|
organization: string;
|
|
1705
1705
|
}
|
|
@@ -4162,9 +4162,9 @@ export declare type ReceiptNotificationsPostResponse = $HttpOk<undefined>;
|
|
|
4162
4162
|
export declare type ShipmentNotificationsPostResponse = $HttpOk<undefined>;
|
|
4163
4163
|
export declare type ReservationsPostResponse = $HttpCreated<io.flow.inventory.v0.models.Reservation> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.inventory.v0.unions.ReservationError>;
|
|
4164
4164
|
export declare type OrderManagementEventsPostReplayByOrderLifecycleEventResponse = $HttpOk<io.flow.order.management.event.v0.unions.OrderManagementEvent> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4165
|
-
export declare type OnboardingStatesPutResponse = $
|
|
4166
|
-
export declare type
|
|
4167
|
-
export declare type
|
|
4165
|
+
export declare type OnboardingStatesPutResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4166
|
+
export declare type OnboardingStatesPutBlockResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4167
|
+
export declare type OnboardingStatesPutUnblockResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4168
4168
|
export declare type MembershipsPostAcceptAndAllResponse = $HttpCreated<io.flow.organization.v0.models.Membership[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4169
4169
|
export declare type AuthorizationsPostParametersResponse = $HttpOk<io.flow.internal.v0.models.AuthorizationParameters[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4170
4170
|
export declare type AuthorizationsGetMetadataByKeyResponse = $HttpOk<io.flow.internal.v0.models.AuthorizationMetadata> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -5015,8 +5015,8 @@ export declare class OrderManagementEventsResource extends $Resource {
|
|
|
5015
5015
|
}
|
|
5016
5016
|
export declare class OnboardingStatesResource extends $Resource {
|
|
5017
5017
|
put(params: OnboardingStatesPutParameters): Promise<OnboardingStatesPutResponse>;
|
|
5018
|
-
|
|
5019
|
-
|
|
5018
|
+
putBlock(params: OnboardingStatesPutBlockParameters): Promise<OnboardingStatesPutBlockResponse>;
|
|
5019
|
+
putUnblock(params: OnboardingStatesPutUnblockParameters): Promise<OnboardingStatesPutUnblockResponse>;
|
|
5020
5020
|
}
|
|
5021
5021
|
export declare class MembershipsResource extends $Resource {
|
|
5022
5022
|
postAcceptAndAll(params: MembershipsPostAcceptAndAllParameters): Promise<MembershipsPostAcceptAndAllResponse>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.116",
|
|
4
4
|
"description": "Global TypeScript typings for Flow Commerce API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"generate": "apibuilder update"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "46a04b6ac3cb8aabcc89d77f21c5586312ed2960"
|
|
30
30
|
}
|