@botpress/api 0.75.0 → 0.77.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/dist/index.js +1033 -381
- package/dist/src/gen/state.d.ts +53 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +69 -2
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -5703,6 +5703,59 @@ export declare const state: {
|
|
|
5703
5703
|
type: "number";
|
|
5704
5704
|
description: string;
|
|
5705
5705
|
};
|
|
5706
|
+
lineItems: {
|
|
5707
|
+
type: "array";
|
|
5708
|
+
items: {
|
|
5709
|
+
type: "object";
|
|
5710
|
+
properties: {
|
|
5711
|
+
id: {
|
|
5712
|
+
type: "string";
|
|
5713
|
+
};
|
|
5714
|
+
description: {
|
|
5715
|
+
type: "string";
|
|
5716
|
+
description: string;
|
|
5717
|
+
};
|
|
5718
|
+
totalInCents: {
|
|
5719
|
+
type: "number";
|
|
5720
|
+
description: string;
|
|
5721
|
+
};
|
|
5722
|
+
currency: {
|
|
5723
|
+
type: "string";
|
|
5724
|
+
maxLength: number;
|
|
5725
|
+
description: string;
|
|
5726
|
+
};
|
|
5727
|
+
pricePerUnitInCents: {
|
|
5728
|
+
type: "number";
|
|
5729
|
+
description: string;
|
|
5730
|
+
nullable: true;
|
|
5731
|
+
};
|
|
5732
|
+
quantity: {
|
|
5733
|
+
type: "number";
|
|
5734
|
+
description: string;
|
|
5735
|
+
nullable: true;
|
|
5736
|
+
};
|
|
5737
|
+
type: {
|
|
5738
|
+
type: "string";
|
|
5739
|
+
enum: string[];
|
|
5740
|
+
description: string;
|
|
5741
|
+
};
|
|
5742
|
+
periodStart: {
|
|
5743
|
+
type: "string";
|
|
5744
|
+
format: string;
|
|
5745
|
+
description: string;
|
|
5746
|
+
nullable: true;
|
|
5747
|
+
};
|
|
5748
|
+
periodEnd: {
|
|
5749
|
+
type: "string";
|
|
5750
|
+
format: string;
|
|
5751
|
+
description: string;
|
|
5752
|
+
nullable: true;
|
|
5753
|
+
};
|
|
5754
|
+
};
|
|
5755
|
+
required: string[];
|
|
5756
|
+
};
|
|
5757
|
+
description: string;
|
|
5758
|
+
};
|
|
5706
5759
|
};
|
|
5707
5760
|
required: string[];
|
|
5708
5761
|
title: string;
|