@compassdigital/sdk.typescript 4.712.0 → 4.714.0
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/lib/interface/menu.d.ts +2 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/messages/commands/UpdateOrderStatusCommand.d.ts +1 -1
- package/lib/messages/commands/UpdateOrderStatusCommand.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +2 -0
- package/src/messages/commands/UpdateOrderStatusCommand.ts +2 -1
|
@@ -8,7 +8,7 @@ export interface UpdateOrderStatusCommand {
|
|
|
8
8
|
};
|
|
9
9
|
payload: {
|
|
10
10
|
orderId: string;
|
|
11
|
-
status: 'accepted' | 'in_progress' | 'ready' | 'out_for_delivery' | 'delivered' | 'collected' | 'no_show' | 'see_kitchen';
|
|
11
|
+
status: 'accepted' | 'in_progress' | 'ready' | 'out_for_delivery' | 'delivered' | 'collected' | 'no_show' | 'see_kitchen' | 'dropoff_leave_warning';
|
|
12
12
|
reason?: string;
|
|
13
13
|
updateSource: string;
|
|
14
14
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateOrderStatusCommand.d.ts","sourceRoot":"","sources":["../../../src/messages/commands/UpdateOrderStatusCommand.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,wBAAwB;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,0BAA0B,CAAC;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,OAAO,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,MAAM,EACH,UAAU,GACV,aAAa,GACb,OAAO,GACP,kBAAkB,GAClB,WAAW,GACX,WAAW,GACX,SAAS,GACT,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"UpdateOrderStatusCommand.d.ts","sourceRoot":"","sources":["../../../src/messages/commands/UpdateOrderStatusCommand.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,wBAAwB;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,0BAA0B,CAAC;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,OAAO,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,MAAM,EACH,UAAU,GACV,aAAa,GACb,OAAO,GACP,kBAAkB,GAClB,WAAW,GACX,WAAW,GACX,SAAS,GACT,aAAa,GACb,uBAAuB,CAAC;QAE3B,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,YAAY,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,MAAM,EAAE,MAAM,CAAC;CACf"}
|
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -9148,6 +9148,7 @@ export interface PostMenuV4BrandPublishPath {
|
|
|
9148
9148
|
|
|
9149
9149
|
export interface PostMenuV4BrandPublishResponse {
|
|
9150
9150
|
status?: string;
|
|
9151
|
+
process_id?: string;
|
|
9151
9152
|
}
|
|
9152
9153
|
|
|
9153
9154
|
export interface PostMenuV4BrandPublishRequest extends BaseRequest, PostMenuV4BrandPublishPath {}
|
|
@@ -9160,6 +9161,7 @@ export interface PostMenuV4BrandIntegrationSyncPath {
|
|
|
9160
9161
|
|
|
9161
9162
|
export interface PostMenuV4BrandIntegrationSyncResponse {
|
|
9162
9163
|
status?: string;
|
|
9164
|
+
process_id?: string;
|
|
9163
9165
|
}
|
|
9164
9166
|
|
|
9165
9167
|
export interface PostMenuV4BrandIntegrationSyncRequest
|