stentor-models 1.55.44 → 1.56.1

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.
@@ -0,0 +1,16 @@
1
+ /*! Copyright (c) 2022, XAPPmedia */
2
+ export interface DeliveryAddress {
3
+ coordinates: {
4
+ latitude: number;
5
+ longitude: number;
6
+ };
7
+ postalAddress: {
8
+ regionCode: string;
9
+ postalCode: string;
10
+ administrativeArea: string;
11
+ locality: string;
12
+ addressLines: string[];
13
+ recipients: string[];
14
+ };
15
+ phoneNumber: string;
16
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=DeliveryAddress.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeliveryAddress.js","sourceRoot":"","sources":["../src/DeliveryAddress.ts"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
1
+ /*! Copyright (c) 2019, XAPPmedia */
2
+ import { BaseRequest } from "./Request";
3
+ import { TransactionDeliveryAddressType } from "./Types";
4
+ import { DeliveryAddress } from "../DeliveryAddress";
5
+ export interface DeliveryAddressRequest extends BaseRequest {
6
+ type: TransactionDeliveryAddressType;
7
+ sessionId: string;
8
+ granted: boolean;
9
+ deliveryAddress: DeliveryAddress;
10
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=DeliveryAddressRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeliveryAddressRequest.js","sourceRoot":"","sources":["../../src/Request/DeliveryAddressRequest.ts"],"names":[],"mappings":""}
@@ -14,6 +14,9 @@ import { SessionEndedRequest } from "./SessionEndedRequest";
14
14
  import { SignInRequest } from "./SignInRequest";
15
15
  import { SurfaceChangeRequest } from "./SurfaceChangeRequest";
16
16
  import { RequestTypes } from "./Types";
17
+ import { DeliveryAddressRequest } from "./DeliveryAddressRequest";
18
+ import { TransactionDecisionRequest } from "./TransactionDecisionRequest";
19
+ import { TransactionRequirementCheckRequest } from "./TransactionRequirementCheckRequest";
17
20
  /**
18
21
  * Shared parameters for each Request
19
22
  */
@@ -115,4 +118,4 @@ export interface ApiAccessData {
115
118
  apiBaseUrl: string;
116
119
  apiAuthToken: string;
117
120
  }
118
- export declare type Request = LaunchRequest | SessionEndedRequest | InputUnknownRequest | IntentRequest | AudioPlayerRequest | PlaybackControlRequest | PermissionRequest | SurfaceChangeRequest | NotificationPermissionRequest | SignInRequest | OptionSelectRequest | RawQueryRequest;
121
+ export declare type Request = LaunchRequest | SessionEndedRequest | InputUnknownRequest | IntentRequest | AudioPlayerRequest | PlaybackControlRequest | PermissionRequest | SurfaceChangeRequest | NotificationPermissionRequest | SignInRequest | OptionSelectRequest | RawQueryRequest | DeliveryAddressRequest | TransactionDecisionRequest | TransactionRequirementCheckRequest;
@@ -0,0 +1,10 @@
1
+ /*! Copyright (c) 2019, XAPPmedia */
2
+ import { BaseRequest } from "./Request";
3
+ import { TransactionDecisionType } from "./Types";
4
+ import { TransactionData } from "../TransactionData";
5
+ export interface TransactionDecisionRequest extends BaseRequest {
6
+ type: TransactionDecisionType;
7
+ sessionId: string;
8
+ granted: boolean;
9
+ transactionData: TransactionData;
10
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TransactionDecisionRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TransactionDecisionRequest.js","sourceRoot":"","sources":["../../src/Request/TransactionDecisionRequest.ts"],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ /*! Copyright (c) 2019, XAPPmedia */
2
+ import { BaseRequest } from "./Request";
3
+ import { TransactionRequirementCheckType } from "./Types";
4
+ export interface TransactionRequirementCheckRequest extends BaseRequest {
5
+ type: TransactionRequirementCheckType;
6
+ sessionId: string;
7
+ granted: boolean;
8
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TransactionRequirementCheckRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TransactionRequirementCheckRequest.js","sourceRoot":"","sources":["../../src/Request/TransactionRequirementCheckRequest.ts"],"names":[],"mappings":""}
@@ -11,7 +11,10 @@ export declare type RawQueryRequestType = "RAW_QUERY_REQUEST";
11
11
  export declare type SessionEndedRequestType = "SESSION_ENDED_REQUEST";
12
12
  export declare type SignInRequestType = "SIGN_IN_REQUEST";
13
13
  export declare type SurfaceChangeRequestType = "SURFACE_CHANGE_REQUEST";
14
- export declare type RequestTypes = AudioPlayerRequestType | InputUnknownRequestType | IntentRequestType | LaunchRequestType | NotificationPermissionRequestType | OptionSelectRequestType | PermissionRequestType | PlaybackControlRequestType | RawQueryRequestType | SessionEndedRequestType | SignInRequestType | SurfaceChangeRequestType;
14
+ export declare type TransactionRequirementCheckType = "TRANSACTION_REQUIREMENT_CHECK_REQUEST";
15
+ export declare type TransactionDecisionType = "TRANSACTION_DECISION_REQUEST";
16
+ export declare type TransactionDeliveryAddressType = "TRANSACTION_DELIVERY_ADDRESS_REQUEST";
17
+ export declare type RequestTypes = AudioPlayerRequestType | InputUnknownRequestType | IntentRequestType | LaunchRequestType | NotificationPermissionRequestType | OptionSelectRequestType | PermissionRequestType | PlaybackControlRequestType | RawQueryRequestType | SessionEndedRequestType | SignInRequestType | SurfaceChangeRequestType | TransactionRequirementCheckType | TransactionDecisionType | TransactionDeliveryAddressType;
15
18
  export declare type LaunchRequestID = "LaunchRequest";
16
19
  export declare type PermissionGrantID = "PermissionGrant";
17
20
  export declare type InputUnknownID = "InputUnknown";
@@ -9,6 +9,7 @@ import { SuggestionTypes } from "../Suggestion";
9
9
  import { UserDataType } from "../UserData";
10
10
  import { Response, SimpleResponse } from "./Response";
11
11
  import { ResponseOutput } from "./ResponseOutput";
12
+ import { OrderDescription, PaymentParameters } from "./Transactions";
12
13
  export interface ResponseBuilderProps {
13
14
  /**
14
15
  * Capabilities of the current device.
@@ -227,6 +228,28 @@ export declare abstract class AbstractResponseBuilder<R = any> {
227
228
  * @param handoffTargetId - The id that represents the handoff target (app id/name, queue id/name, etc)
228
229
  */
229
230
  abstract askForHandoff(handoffTargetId: string): AbstractResponseBuilder<R>;
231
+ /**
232
+ * Check if the user can "transact"
233
+ */
234
+ abstract askTransactionRequirements(): AbstractResponseBuilder<R>;
235
+ /**
236
+ * Ask the platform to query the delivery address
237
+ *
238
+ * @param response The reason for the delivery address ("To know where to send the order")
239
+ */
240
+ abstract askForDeliveryAddress(response?: string | SimpleResponse): AbstractResponseBuilder<R>;
241
+ /**
242
+ *
243
+ * @param paymentParameters (google payment or merchant)
244
+ * @param order the order description
245
+ */
246
+ abstract askForTransactionDecision(paymentParameters: PaymentParameters, order: OrderDescription): AbstractResponseBuilder<R>;
247
+ /**
248
+ *
249
+ * @param response To announce the order was completed ("Your order ${conv.data.UNIQUE_ORDER_ID} is all set!")
250
+ * @param order the order description
251
+ */
252
+ abstract askForOrderUpdate(response: string | SimpleResponse, order: OrderDescription): AbstractResponseBuilder<R>;
230
253
  /**
231
254
  * Build the response
232
255
  *
@@ -1 +1 @@
1
- {"version":3,"file":"AbstractResponseBuilder.js","sourceRoot":"","sources":["../../src/Response/AbstractResponseBuilder.ts"],"names":[],"mappings":";;;AA+BA,MAAsB,uBAAuB;IAsCzC,YAAmB,KAA2B;QAC1C,IAAI,CAAC,GAAG,GAAG,SAAS,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC3B,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACxB,CAAC;IAtBD;;;;OAIG;IACH,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAoID;;OAEG;IACI,cAAc;QACjB,OAAO,CAAC,CAAC;IACb,CAAC;CA8DJ;AAlOD,0DAkOC"}
1
+ {"version":3,"file":"AbstractResponseBuilder.js","sourceRoot":"","sources":["../../src/Response/AbstractResponseBuilder.ts"],"names":[],"mappings":";;;AAgCA,MAAsB,uBAAuB;IAsCzC,YAAmB,KAA2B;QAC1C,IAAI,CAAC,GAAG,GAAG,SAAS,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC3B,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACxB,CAAC;IAtBD;;;;OAIG;IACH,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAoID;;OAEG;IACI,cAAc;QACjB,OAAO,CAAC,CAAC;IACb,CAAC;CAoFJ;AAxPD,0DAwPC"}
@@ -107,7 +107,7 @@ export interface SimpleResponse<T = string | ResponseOutput> extends Partial<Act
107
107
  /**
108
108
  * System responses to perform account links, control media, surface changes, and permission requests.
109
109
  */
110
- system?: "ACCOUNT_LINK" | "MEDIA_ENQUEUE" | "MEDIA_STOP" | "SURFACE_CHANGE" | "PERMISSION_LIST" | "PERMISSION_EMAIL" | "PERMISSION_PHONE_NUMBER" | "PERMISSION_LOCATION_PRECISE" | "PERMISSION_LOCATION_COARSE" | "PERMISSION_NOTIFICATION" | "TRANSFER_CALL" | "HANDOFF";
110
+ system?: "ACCOUNT_LINK" | "MEDIA_ENQUEUE" | "MEDIA_STOP" | "SURFACE_CHANGE" | "PERMISSION_LIST" | "PERMISSION_EMAIL" | "PERMISSION_PHONE_NUMBER" | "PERMISSION_LOCATION_PRECISE" | "PERMISSION_LOCATION_COARSE" | "PERMISSION_NOTIFICATION" | "TRANSFER_CALL" | "HANDOFF" | "TRANSACTION_REQUIREMENTS_CHECK" | "TRANSACTION_DELIVERY_ADDRESS" | "TRANSACTION_DECISION" | "TRANSACTION_STATUS";
111
111
  /**
112
112
  * Supplemental data to augment the response.
113
113
  */
@@ -0,0 +1,167 @@
1
+ /*! Copyright (c) 2022, XAPPmedia */
2
+ /**
3
+ Here we go again. We are abstracting the Stentor input following a platform. In this case Google.
4
+ This is a more common sense (more user-friendly), de-googlified version of the Google inputs.
5
+ This transaction API could change in the future as we gain more experience.
6
+ */
7
+ export declare type PaymentType = "PAYMENT_TYPE_UNSPECIFIED" | "PAYMENT_CARD" | "BANK" | "LOYALTY_PROGRAM" | "CASH" | "GIFT_CARD" | "WALLET";
8
+ export declare type PaymentMethodStatusType = "STATUS_UNSPECIFIED" | "STATUS_OK" | "STATUS_REQUIRE_FIX" | "STATUS_INAPPLICABLE";
9
+ export declare type PurchaseStatus = "PURCHASE_STATUS_UNSPECIFIED" | "READY_FOR_PICKUP" | "SHIPPED" | "DELIVERED" | "OUT_OF_STOCK" | "IN_PREPARATION" | "CREATED" | "CONFIRMED" | "REJECTED" | "RETURNED" | "CANCELLED" | "CHANGE_REQUESTED";
10
+ export declare type PurchaseType = "PURCHASE_TYPE_UNSPECIFIED" | "RETAIL" | "FOOD" | "GROCERY" | "MOBILE_RECHARGE";
11
+ export declare type FulfillmentType = "TYPE_UNSPECIFIED" | "DELIVERY" | "PICKUP";
12
+ export declare type PickupType = "UNSPECIFIED" | "INSTORE" | "CURBSIDE";
13
+ export declare type FollowUpActionType = "VIEW_DETAILS" | "CALL" | "EMAIL";
14
+ export declare type PriceType = "UNIT" | "TOTAL" | "SUBTOTAL" | "DELIVERY" | "TAX";
15
+ export declare type PriceState = "ESTIMATE" | "ACTUAL";
16
+ export declare type ProvenanceType = "PAYMENT_METHOD_PROVENANCE_MERCHANT" | "PAYMENT_METHOD_PROVENANCE_UNSPECIFIED" | "PAYMENT_METHOD_PROVENANCE_GOOGLE";
17
+ export declare type PurchaseLocationType = "ONLINE_PURCHASE" | "UNSPECIFIED_LOCATION" | "INSTORE_PURCHASE";
18
+ export interface PaymentMethodDisplayInfo {
19
+ paymentType: PaymentType;
20
+ paymentMethodDisplayName: string;
21
+ paymentMethodVoiceName: string;
22
+ }
23
+ export interface PaymentMethodStatus {
24
+ status: PaymentMethodStatusType;
25
+ statusMessage: string;
26
+ }
27
+ export interface MerchantPaymentMethod {
28
+ paymentMethodGroup: string;
29
+ paymentMethodId: string;
30
+ paymentMethodDisplayInfo: PaymentMethodDisplayInfo;
31
+ paymentMethodStatus: PaymentMethodStatus;
32
+ }
33
+ export interface PaymentParameters {
34
+ googlePaymentOption?: never;
35
+ merchantPaymentOption: {
36
+ merchantPaymentMethod: MerchantPaymentMethod[];
37
+ defaultMerchantPaymentMethodId: string;
38
+ managePaymentMethodUrl: string;
39
+ };
40
+ }
41
+ export interface BuyerInfo {
42
+ email: string;
43
+ firstName: string;
44
+ lastName: string;
45
+ displayName: string;
46
+ phoneNumbers: string[];
47
+ }
48
+ export interface SellerInfo {
49
+ email: string;
50
+ firstName: string;
51
+ lastName: string;
52
+ displayName: string;
53
+ phoneNumbers: string[];
54
+ }
55
+ export interface MerchantInfo {
56
+ id: string;
57
+ name: string;
58
+ image?: TransactionImage;
59
+ phoneNumbers?: string[];
60
+ address?: string;
61
+ }
62
+ export interface FollowUpAction {
63
+ type: FollowUpActionType;
64
+ title: string;
65
+ openUrlAction: {
66
+ url: string;
67
+ };
68
+ }
69
+ export interface LineItem {
70
+ id: string;
71
+ name: string;
72
+ priceAttributes: PriceAttribute[];
73
+ quantity: number;
74
+ followUpActions: FollowUpAction[];
75
+ image: TransactionImage;
76
+ description: string;
77
+ notes: string[];
78
+ }
79
+ export interface Contents {
80
+ lineItems: LineItem[];
81
+ }
82
+ export interface PriceAttribute {
83
+ name: string;
84
+ type: PriceType;
85
+ state: PriceState;
86
+ amount: number;
87
+ currencyCode: string;
88
+ }
89
+ export interface PaymentData {
90
+ paymentResult: {
91
+ googlePaymentData?: string;
92
+ merchantPaymentMethodId: string;
93
+ };
94
+ paymentInfo: {
95
+ paymentMethodDisplayInfo: {
96
+ paymentType: PaymentType;
97
+ paymentMethodDisplayName: string;
98
+ };
99
+ paymentMethodProvenance: ProvenanceType;
100
+ };
101
+ }
102
+ export interface PurchaseReturnsInfo {
103
+ isReturnable: boolean;
104
+ daysToReturn: number;
105
+ policyUrl: string;
106
+ }
107
+ export interface TransactionLocation {
108
+ zipCode: string;
109
+ city: string;
110
+ state: string;
111
+ address: string;
112
+ recipient: string;
113
+ phoneNumber: string;
114
+ }
115
+ interface TransactionImage {
116
+ url: string;
117
+ accessibilityText: string;
118
+ }
119
+ export interface PickupInfo {
120
+ pickupType: PickupType;
121
+ curbsideInfo: {
122
+ vehicle: {
123
+ make: string;
124
+ model: string;
125
+ };
126
+ };
127
+ }
128
+ export interface PurchaseFulfillmentInfo {
129
+ id: string;
130
+ fulfillmentType: FulfillmentType;
131
+ expectedFulfillmentTimeMs: number;
132
+ expectedPreparationTimeMs: number;
133
+ location: TransactionLocation;
134
+ expireTime: string;
135
+ price: PriceAttribute;
136
+ fulfillmentContact: SellerInfo;
137
+ shippingMethodName: string;
138
+ storeCode: string;
139
+ pickupInfo?: PickupInfo;
140
+ }
141
+ export interface PurchaseOrderExtension {
142
+ status: PurchaseStatus;
143
+ userVisibleStatusLabel: string;
144
+ type: PurchaseType;
145
+ returnsInfo: PurchaseReturnsInfo;
146
+ fulfillmentInfo: PurchaseFulfillmentInfo;
147
+ purchaseLocationType: PurchaseLocationType;
148
+ }
149
+ export interface OrderDescription {
150
+ googleOrderId: string;
151
+ merchantOrderId: string;
152
+ userVisibleOrderId: string;
153
+ userVisibleStateLabel: string;
154
+ buyerInfo: BuyerInfo;
155
+ image: TransactionImage;
156
+ createTime: string;
157
+ lastUpdateTime: string;
158
+ transactionMerchant: MerchantInfo;
159
+ contents: Contents;
160
+ priceAttributes: PriceAttribute[];
161
+ followUpActions: FollowUpAction[];
162
+ paymentData: PaymentData;
163
+ termsOfServiceUrl: string;
164
+ note: string;
165
+ purchase: PurchaseOrderExtension;
166
+ }
167
+ export {};
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ /*! Copyright (c) 2022, XAPPmedia */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=Transactions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Transactions.js","sourceRoot":"","sources":["../../src/Response/Transactions.ts"],"names":[],"mappings":";AAAA,oCAAoC"}
@@ -4,3 +4,4 @@ export * from "./CanFulfillIntentResult";
4
4
  export * from "./Response";
5
5
  export * from "./ResponseOutput";
6
6
  export * from "./ResponseSegment";
7
+ export * from "./Transactions";
@@ -20,4 +20,5 @@ __exportStar(require("./CanFulfillIntentResult"), exports);
20
20
  __exportStar(require("./Response"), exports);
21
21
  __exportStar(require("./ResponseOutput"), exports);
22
22
  __exportStar(require("./ResponseSegment"), exports);
23
+ __exportStar(require("./Transactions"), exports);
23
24
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Response/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,4DAA0C;AAC1C,2DAAyC;AACzC,6CAA2B;AAC3B,mDAAiC;AACjC,oDAAkC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Response/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,4DAA0C;AAC1C,2DAAyC;AACzC,6CAA2B;AAC3B,mDAAiC;AACjC,oDAAkC;AAClC,iDAA+B"}
@@ -0,0 +1,5 @@
1
+ /*! Copyright (c) 2022, XAPPmedia */
2
+ export interface TransactionData {
3
+ platformOrderId: string;
4
+ merchantOrderId: string;
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TransactionData.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TransactionData.js","sourceRoot":"","sources":["../src/TransactionData.ts"],"names":[],"mappings":""}
package/lib/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export * from "./Contextual";
8
8
  export * from "./Crm";
9
9
  export * from "./DateTime";
10
10
  export * from "./DelegatingHandler";
11
+ export * from "./DeliveryAddress";
11
12
  export * from "./Device";
12
13
  export * from "./Display";
13
14
  export * from "./Email";
@@ -36,6 +37,7 @@ export * from "./Slot";
36
37
  export * from "./SMS";
37
38
  export * from "./Storage";
38
39
  export * from "./Suggestion";
40
+ export * from "./TransactionData";
39
41
  export * from "./UserData";
40
42
  export * from "./UserProfile";
41
43
  export * from "./UtteranceTest";
package/lib/index.js CHANGED
@@ -24,6 +24,7 @@ __exportStar(require("./Contextual"), exports);
24
24
  __exportStar(require("./Crm"), exports);
25
25
  __exportStar(require("./DateTime"), exports);
26
26
  __exportStar(require("./DelegatingHandler"), exports);
27
+ __exportStar(require("./DeliveryAddress"), exports);
27
28
  __exportStar(require("./Device"), exports);
28
29
  __exportStar(require("./Display"), exports);
29
30
  __exportStar(require("./Email"), exports);
@@ -52,6 +53,7 @@ __exportStar(require("./Slot"), exports);
52
53
  __exportStar(require("./SMS"), exports);
53
54
  __exportStar(require("./Storage"), exports);
54
55
  __exportStar(require("./Suggestion"), exports);
56
+ __exportStar(require("./TransactionData"), exports);
55
57
  __exportStar(require("./UserData"), exports);
56
58
  __exportStar(require("./UserProfile"), exports);
57
59
  __exportStar(require("./UtteranceTest"), exports);
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,2CAAyB;AACzB,wCAAsB;AACtB,4CAA0B;AAC1B,gDAA8B;AAC9B,4CAA0B;AAC1B,+CAA6B;AAC7B,wCAAsB;AACtB,6CAA2B;AAC3B,sDAAoC;AACpC,2CAAyB;AACzB,4CAA0B;AAC1B,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB;AACzB,4CAA0B;AAC1B,4CAA0B;AAC1B,2CAAyB;AACzB,kDAAgC;AAChC,kDAAgC;AAChC,2CAAyB;AACzB,6CAA2B;AAC3B,0CAAwB;AACxB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,wCAAsB;AACtB,yCAAuB;AACvB,wCAAsB;AACtB,4CAA0B;AAC1B,mDAAiC;AACjC,6CAA2B;AAC3B,4CAA0B;AAC1B,6CAA2B;AAC3B,yCAAuB;AACvB,wCAAsB;AACtB,4CAA0B;AAC1B,+CAA6B;AAC7B,6CAA2B;AAC3B,gDAA8B;AAC9B,kDAAgC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,2CAAyB;AACzB,wCAAsB;AACtB,4CAA0B;AAC1B,gDAA8B;AAC9B,4CAA0B;AAC1B,+CAA6B;AAC7B,wCAAsB;AACtB,6CAA2B;AAC3B,sDAAoC;AACpC,oDAAkC;AAClC,2CAAyB;AACzB,4CAA0B;AAC1B,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB;AACzB,4CAA0B;AAC1B,4CAA0B;AAC1B,2CAAyB;AACzB,kDAAgC;AAChC,kDAAgC;AAChC,2CAAyB;AACzB,6CAA2B;AAC3B,0CAAwB;AACxB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,wCAAsB;AACtB,yCAAuB;AACvB,wCAAsB;AACtB,4CAA0B;AAC1B,mDAAiC;AACjC,6CAA2B;AAC3B,4CAA0B;AAC1B,6CAA2B;AAC3B,yCAAuB;AACvB,wCAAsB;AACtB,4CAA0B;AAC1B,+CAA6B;AAC7B,oDAAkC;AAClC,6CAA2B;AAC3B,gDAA8B;AAC9B,kDAAgC"}
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.55.44",
7
+ "version": "1.56.1",
8
8
  "description": "Models for 📣 stentor",
9
9
  "types": "lib/index",
10
10
  "typings": "lib/index",
@@ -17,12 +17,12 @@
17
17
  "node": "^10 || ^12 || ^14 || ^16.0.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@microsoft/api-extractor": "7.24.2",
20
+ "@microsoft/api-extractor": "7.25.0",
21
21
  "@rollup/plugin-typescript": "8.3.2",
22
22
  "@xapp/config": "0.2.3",
23
23
  "rollup": "2.75.5",
24
24
  "tslib": "2.4.0",
25
- "typescript": "4.7.2"
25
+ "typescript": "4.7.3"
26
26
  },
27
27
  "scripts": {
28
28
  "api": "api-extractor run --local",
@@ -33,5 +33,5 @@
33
33
  "dependencies": {
34
34
  "@xapp/patterns": "1.40.172"
35
35
  },
36
- "gitHead": "74be95964e0d375c18c756ac51294491281bdff7"
36
+ "gitHead": "84d5c136e8a8d47661c0ea38759020a8e0c92144"
37
37
  }