@wix/auto_sdk_benefit-programs_program-definitions 1.0.1 → 1.0.2
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/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.types.d.ts +101 -23
- package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.types.js.map +1 -1
- package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.d.ts +128 -27
- package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.js +6 -0
- package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.js.map +1 -1
- package/build/es/src/benefit-programs-v1-program-definition-program-definitions.types.d.ts +101 -23
- package/build/es/src/benefit-programs-v1-program-definition-program-definitions.types.js.map +1 -1
- package/build/es/src/benefit-programs-v1-program-definition-program-definitions.universal.d.ts +128 -27
- package/build/es/src/benefit-programs-v1-program-definition-program-definitions.universal.js +6 -0
- package/build/es/src/benefit-programs-v1-program-definition-program-definitions.universal.js.map +1 -1
- package/build/internal/cjs/src/benefit-programs-v1-program-definition-program-definitions.types.d.ts +101 -23
- package/build/internal/cjs/src/benefit-programs-v1-program-definition-program-definitions.types.js.map +1 -1
- package/build/internal/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.d.ts +128 -27
- package/build/internal/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.js +6 -0
- package/build/internal/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.js.map +1 -1
- package/build/internal/es/src/benefit-programs-v1-program-definition-program-definitions.types.d.ts +101 -23
- package/build/internal/es/src/benefit-programs-v1-program-definition-program-definitions.types.js.map +1 -1
- package/build/internal/es/src/benefit-programs-v1-program-definition-program-definitions.universal.d.ts +128 -27
- package/build/internal/es/src/benefit-programs-v1-program-definition-program-definitions.universal.js +6 -0
- package/build/internal/es/src/benefit-programs-v1-program-definition-program-definitions.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export interface ProgramDefinition {
|
|
2
2
|
/**
|
|
3
3
|
* Program definition ID.
|
|
4
|
+
* @format GUID
|
|
5
|
+
* @immutable
|
|
4
6
|
* @readonly
|
|
5
7
|
*/
|
|
6
8
|
id?: string | null;
|
|
@@ -22,16 +24,28 @@ export interface ProgramDefinition {
|
|
|
22
24
|
* @readonly
|
|
23
25
|
*/
|
|
24
26
|
updatedDate?: Date | null;
|
|
25
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* Name of the program associated with this program definition. This name will be the same for all programs provisioned from this program definition.
|
|
29
|
+
* @maxLength 64
|
|
30
|
+
*/
|
|
26
31
|
displayName?: string | null;
|
|
27
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
34
|
+
* @immutable
|
|
35
|
+
* @minLength 1
|
|
36
|
+
* @maxLength 50
|
|
37
|
+
*/
|
|
28
38
|
namespace?: string | null;
|
|
29
39
|
/**
|
|
30
40
|
* Custom field data for the program definition object.
|
|
31
41
|
* [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.
|
|
32
42
|
*/
|
|
33
43
|
extendedFields?: ExtendedFields;
|
|
34
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* External program definition ID designated by the app owner.
|
|
46
|
+
* @format GUID
|
|
47
|
+
* @immutable
|
|
48
|
+
*/
|
|
35
49
|
externalId?: string | null;
|
|
36
50
|
}
|
|
37
51
|
export interface ExtendedFields {
|
|
@@ -62,7 +76,10 @@ export interface UpdateProgramDefinitionResponse {
|
|
|
62
76
|
programDefinition?: ProgramDefinition;
|
|
63
77
|
}
|
|
64
78
|
export interface DeleteProgramDefinitionRequest {
|
|
65
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* ID of the ProgramDefinition to delete.
|
|
81
|
+
* @format GUID
|
|
82
|
+
*/
|
|
66
83
|
programDefinitionId: string;
|
|
67
84
|
/**
|
|
68
85
|
* Specifies the timing of ending the active benefit pools associated with this program definition.
|
|
@@ -95,7 +112,10 @@ export declare enum Cascade {
|
|
|
95
112
|
export interface DeleteProgramDefinitionResponse {
|
|
96
113
|
}
|
|
97
114
|
export interface GetProgramDefinitionRequest {
|
|
98
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* ID of the program definition to retrieve.
|
|
117
|
+
* @format GUID
|
|
118
|
+
*/
|
|
99
119
|
programDefinitionId: string;
|
|
100
120
|
}
|
|
101
121
|
export interface GetProgramDefinitionResponse {
|
|
@@ -103,9 +123,16 @@ export interface GetProgramDefinitionResponse {
|
|
|
103
123
|
programDefinition?: ProgramDefinition;
|
|
104
124
|
}
|
|
105
125
|
export interface GetProgramDefinitionByExternalIdAndNamespaceRequest {
|
|
106
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
128
|
+
* @minLength 1
|
|
129
|
+
* @maxLength 50
|
|
130
|
+
*/
|
|
107
131
|
namespace: string;
|
|
108
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* External program definition ID.
|
|
134
|
+
* @format GUID
|
|
135
|
+
*/
|
|
109
136
|
externalId: string;
|
|
110
137
|
}
|
|
111
138
|
export interface GetProgramDefinitionByExternalIdAndNamespaceResponse {
|
|
@@ -131,6 +158,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
131
158
|
/**
|
|
132
159
|
* Sort object in the following format:
|
|
133
160
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
161
|
+
* @maxSize 5
|
|
134
162
|
*/
|
|
135
163
|
sort?: Sorting[];
|
|
136
164
|
}
|
|
@@ -140,7 +168,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
140
168
|
cursorPaging?: CursorPaging;
|
|
141
169
|
}
|
|
142
170
|
export interface Sorting {
|
|
143
|
-
/**
|
|
171
|
+
/**
|
|
172
|
+
* Name of the field to sort by.
|
|
173
|
+
* @maxLength 512
|
|
174
|
+
*/
|
|
144
175
|
fieldName?: string;
|
|
145
176
|
/** Sort order. */
|
|
146
177
|
order?: SortOrder;
|
|
@@ -152,13 +183,17 @@ export declare enum SortOrder {
|
|
|
152
183
|
DESC = "DESC"
|
|
153
184
|
}
|
|
154
185
|
export interface CursorPaging {
|
|
155
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* Maximum number of items to return in the results.
|
|
188
|
+
* @max 100
|
|
189
|
+
*/
|
|
156
190
|
limit?: number | null;
|
|
157
191
|
/**
|
|
158
192
|
* Pointer to the next or previous page in the list of results.
|
|
159
193
|
*
|
|
160
194
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
161
195
|
* Not relevant for the first request.
|
|
196
|
+
* @maxLength 16000
|
|
162
197
|
*/
|
|
163
198
|
cursor?: string | null;
|
|
164
199
|
}
|
|
@@ -182,9 +217,15 @@ export interface CursorPagingMetadata {
|
|
|
182
217
|
hasNext?: boolean | null;
|
|
183
218
|
}
|
|
184
219
|
export interface Cursors {
|
|
185
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* Cursor string pointing to the next page in the list of results.
|
|
222
|
+
* @maxLength 16000
|
|
223
|
+
*/
|
|
186
224
|
next?: string | null;
|
|
187
|
-
/**
|
|
225
|
+
/**
|
|
226
|
+
* Cursor pointing to the previous page in the list of results.
|
|
227
|
+
* @maxLength 16000
|
|
228
|
+
*/
|
|
188
229
|
prev?: string | null;
|
|
189
230
|
}
|
|
190
231
|
export interface UpsertProgramDefinitionRequest {
|
|
@@ -196,9 +237,16 @@ export interface UpsertProgramDefinitionResponse {
|
|
|
196
237
|
programDefinition?: ProgramDefinition;
|
|
197
238
|
}
|
|
198
239
|
export interface GetOrCreateProgramDefinitionRequest {
|
|
199
|
-
/**
|
|
240
|
+
/**
|
|
241
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
242
|
+
* @minLength 1
|
|
243
|
+
* @maxLength 50
|
|
244
|
+
*/
|
|
200
245
|
namespace?: string;
|
|
201
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* External program definition ID.
|
|
248
|
+
* @format GUID
|
|
249
|
+
*/
|
|
202
250
|
externalId?: string;
|
|
203
251
|
}
|
|
204
252
|
export interface GetOrCreateProgramDefinitionResponse {
|
|
@@ -278,9 +326,15 @@ export interface ActionEvent {
|
|
|
278
326
|
bodyAsJson?: string;
|
|
279
327
|
}
|
|
280
328
|
export interface MessageEnvelope {
|
|
281
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* App instance ID.
|
|
331
|
+
* @format GUID
|
|
332
|
+
*/
|
|
282
333
|
instanceId?: string | null;
|
|
283
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* Event type.
|
|
336
|
+
* @maxLength 150
|
|
337
|
+
*/
|
|
284
338
|
eventType?: string;
|
|
285
339
|
/** The identification type and identity data. */
|
|
286
340
|
identity?: IdentificationData;
|
|
@@ -288,26 +342,50 @@ export interface MessageEnvelope {
|
|
|
288
342
|
data?: string;
|
|
289
343
|
}
|
|
290
344
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
291
|
-
/**
|
|
345
|
+
/**
|
|
346
|
+
* ID of a site visitor that has not logged in to the site.
|
|
347
|
+
* @format GUID
|
|
348
|
+
*/
|
|
292
349
|
anonymousVisitorId?: string;
|
|
293
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* ID of a site visitor that has logged in to the site.
|
|
352
|
+
* @format GUID
|
|
353
|
+
*/
|
|
294
354
|
memberId?: string;
|
|
295
|
-
/**
|
|
355
|
+
/**
|
|
356
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
357
|
+
* @format GUID
|
|
358
|
+
*/
|
|
296
359
|
wixUserId?: string;
|
|
297
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* ID of an app.
|
|
362
|
+
* @format GUID
|
|
363
|
+
*/
|
|
298
364
|
appId?: string;
|
|
299
365
|
/** @readonly */
|
|
300
366
|
identityType?: WebhookIdentityType;
|
|
301
367
|
}
|
|
302
368
|
/** @oneof */
|
|
303
369
|
export interface IdentificationDataIdOneOf {
|
|
304
|
-
/**
|
|
370
|
+
/**
|
|
371
|
+
* ID of a site visitor that has not logged in to the site.
|
|
372
|
+
* @format GUID
|
|
373
|
+
*/
|
|
305
374
|
anonymousVisitorId?: string;
|
|
306
|
-
/**
|
|
375
|
+
/**
|
|
376
|
+
* ID of a site visitor that has logged in to the site.
|
|
377
|
+
* @format GUID
|
|
378
|
+
*/
|
|
307
379
|
memberId?: string;
|
|
308
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
382
|
+
* @format GUID
|
|
383
|
+
*/
|
|
309
384
|
wixUserId?: string;
|
|
310
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* ID of an app.
|
|
387
|
+
* @format GUID
|
|
388
|
+
*/
|
|
311
389
|
appId?: string;
|
|
312
390
|
}
|
|
313
391
|
export declare enum WebhookIdentityType {
|
package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"benefit-programs-v1-program-definition-program-definitions.types.js","sourceRoot":"","sources":["../../../src/benefit-programs-v1-program-definition-program-definitions.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"benefit-programs-v1-program-definition-program-definitions.types.js","sourceRoot":"","sources":["../../../src/benefit-programs-v1-program-definition-program-definitions.types.ts"],"names":[],"mappings":";;;AAgGA,IAAY,OAqBX;AArBD,WAAY,OAAO;IACjB,uBAAuB;IACvB,8CAAmC,CAAA;IACnC;;;;OAIG;IACH,wCAA6B,CAAA;IAC7B;;;;OAIG;IACH,sCAA2B,CAAA;IAC3B;;;;OAIG;IACH,kDAAuC,CAAA;AACzC,CAAC,EArBW,OAAO,uBAAP,OAAO,QAqBlB;AA6ED,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,4BAA4B;IAC5B,wBAAW,CAAA;IACX,6BAA6B;IAC7B,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB;AAkOD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export interface ProgramDefinition {
|
|
2
2
|
/**
|
|
3
3
|
* Program definition ID.
|
|
4
|
+
* @format GUID
|
|
5
|
+
* @immutable
|
|
4
6
|
* @readonly
|
|
5
7
|
*/
|
|
6
8
|
_id?: string | null;
|
|
@@ -22,16 +24,28 @@ export interface ProgramDefinition {
|
|
|
22
24
|
* @readonly
|
|
23
25
|
*/
|
|
24
26
|
_updatedDate?: Date | null;
|
|
25
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* Name of the program associated with this program definition. This name will be the same for all programs provisioned from this program definition.
|
|
29
|
+
* @maxLength 64
|
|
30
|
+
*/
|
|
26
31
|
displayName?: string | null;
|
|
27
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
34
|
+
* @immutable
|
|
35
|
+
* @minLength 1
|
|
36
|
+
* @maxLength 50
|
|
37
|
+
*/
|
|
28
38
|
namespace?: string | null;
|
|
29
39
|
/**
|
|
30
40
|
* Custom field data for the program definition object.
|
|
31
41
|
* [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.
|
|
32
42
|
*/
|
|
33
43
|
extendedFields?: ExtendedFields;
|
|
34
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* External program definition ID designated by the app owner.
|
|
46
|
+
* @format GUID
|
|
47
|
+
* @immutable
|
|
48
|
+
*/
|
|
35
49
|
externalId?: string | null;
|
|
36
50
|
}
|
|
37
51
|
export interface ExtendedFields {
|
|
@@ -62,7 +76,10 @@ export interface UpdateProgramDefinitionResponse {
|
|
|
62
76
|
programDefinition?: ProgramDefinition;
|
|
63
77
|
}
|
|
64
78
|
export interface DeleteProgramDefinitionRequest {
|
|
65
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* ID of the ProgramDefinition to delete.
|
|
81
|
+
* @format GUID
|
|
82
|
+
*/
|
|
66
83
|
programDefinitionId: string;
|
|
67
84
|
/**
|
|
68
85
|
* Specifies the timing of ending the active benefit pools associated with this program definition.
|
|
@@ -95,7 +112,10 @@ export declare enum Cascade {
|
|
|
95
112
|
export interface DeleteProgramDefinitionResponse {
|
|
96
113
|
}
|
|
97
114
|
export interface GetProgramDefinitionRequest {
|
|
98
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* ID of the program definition to retrieve.
|
|
117
|
+
* @format GUID
|
|
118
|
+
*/
|
|
99
119
|
programDefinitionId: string;
|
|
100
120
|
}
|
|
101
121
|
export interface GetProgramDefinitionResponse {
|
|
@@ -103,9 +123,16 @@ export interface GetProgramDefinitionResponse {
|
|
|
103
123
|
programDefinition?: ProgramDefinition;
|
|
104
124
|
}
|
|
105
125
|
export interface GetProgramDefinitionByExternalIdAndNamespaceRequest {
|
|
106
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
128
|
+
* @minLength 1
|
|
129
|
+
* @maxLength 50
|
|
130
|
+
*/
|
|
107
131
|
namespace: string;
|
|
108
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* External program definition ID.
|
|
134
|
+
* @format GUID
|
|
135
|
+
*/
|
|
109
136
|
externalId: string;
|
|
110
137
|
}
|
|
111
138
|
export interface GetProgramDefinitionByExternalIdAndNamespaceResponse {
|
|
@@ -131,6 +158,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
131
158
|
/**
|
|
132
159
|
* Sort object in the following format:
|
|
133
160
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
161
|
+
* @maxSize 5
|
|
134
162
|
*/
|
|
135
163
|
sort?: Sorting[];
|
|
136
164
|
}
|
|
@@ -140,7 +168,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
140
168
|
cursorPaging?: CursorPaging;
|
|
141
169
|
}
|
|
142
170
|
export interface Sorting {
|
|
143
|
-
/**
|
|
171
|
+
/**
|
|
172
|
+
* Name of the field to sort by.
|
|
173
|
+
* @maxLength 512
|
|
174
|
+
*/
|
|
144
175
|
fieldName?: string;
|
|
145
176
|
/** Sort order. */
|
|
146
177
|
order?: SortOrder;
|
|
@@ -152,13 +183,17 @@ export declare enum SortOrder {
|
|
|
152
183
|
DESC = "DESC"
|
|
153
184
|
}
|
|
154
185
|
export interface CursorPaging {
|
|
155
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* Maximum number of items to return in the results.
|
|
188
|
+
* @max 100
|
|
189
|
+
*/
|
|
156
190
|
limit?: number | null;
|
|
157
191
|
/**
|
|
158
192
|
* Pointer to the next or previous page in the list of results.
|
|
159
193
|
*
|
|
160
194
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
161
195
|
* Not relevant for the first request.
|
|
196
|
+
* @maxLength 16000
|
|
162
197
|
*/
|
|
163
198
|
cursor?: string | null;
|
|
164
199
|
}
|
|
@@ -182,9 +217,15 @@ export interface CursorPagingMetadata {
|
|
|
182
217
|
hasNext?: boolean | null;
|
|
183
218
|
}
|
|
184
219
|
export interface Cursors {
|
|
185
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* Cursor string pointing to the next page in the list of results.
|
|
222
|
+
* @maxLength 16000
|
|
223
|
+
*/
|
|
186
224
|
next?: string | null;
|
|
187
|
-
/**
|
|
225
|
+
/**
|
|
226
|
+
* Cursor pointing to the previous page in the list of results.
|
|
227
|
+
* @maxLength 16000
|
|
228
|
+
*/
|
|
188
229
|
prev?: string | null;
|
|
189
230
|
}
|
|
190
231
|
export interface UpsertProgramDefinitionRequest {
|
|
@@ -196,9 +237,16 @@ export interface UpsertProgramDefinitionResponse {
|
|
|
196
237
|
programDefinition?: ProgramDefinition;
|
|
197
238
|
}
|
|
198
239
|
export interface GetOrCreateProgramDefinitionRequest {
|
|
199
|
-
/**
|
|
240
|
+
/**
|
|
241
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
242
|
+
* @minLength 1
|
|
243
|
+
* @maxLength 50
|
|
244
|
+
*/
|
|
200
245
|
namespace?: string;
|
|
201
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* External program definition ID.
|
|
248
|
+
* @format GUID
|
|
249
|
+
*/
|
|
202
250
|
externalId?: string;
|
|
203
251
|
}
|
|
204
252
|
export interface GetOrCreateProgramDefinitionResponse {
|
|
@@ -276,9 +324,15 @@ export interface ActionEvent {
|
|
|
276
324
|
body?: string;
|
|
277
325
|
}
|
|
278
326
|
export interface MessageEnvelope {
|
|
279
|
-
/**
|
|
327
|
+
/**
|
|
328
|
+
* App instance ID.
|
|
329
|
+
* @format GUID
|
|
330
|
+
*/
|
|
280
331
|
instanceId?: string | null;
|
|
281
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* Event type.
|
|
334
|
+
* @maxLength 150
|
|
335
|
+
*/
|
|
282
336
|
eventType?: string;
|
|
283
337
|
/** The identification type and identity data. */
|
|
284
338
|
identity?: IdentificationData;
|
|
@@ -286,26 +340,50 @@ export interface MessageEnvelope {
|
|
|
286
340
|
data?: string;
|
|
287
341
|
}
|
|
288
342
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
289
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* ID of a site visitor that has not logged in to the site.
|
|
345
|
+
* @format GUID
|
|
346
|
+
*/
|
|
290
347
|
anonymousVisitorId?: string;
|
|
291
|
-
/**
|
|
348
|
+
/**
|
|
349
|
+
* ID of a site visitor that has logged in to the site.
|
|
350
|
+
* @format GUID
|
|
351
|
+
*/
|
|
292
352
|
memberId?: string;
|
|
293
|
-
/**
|
|
353
|
+
/**
|
|
354
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
355
|
+
* @format GUID
|
|
356
|
+
*/
|
|
294
357
|
wixUserId?: string;
|
|
295
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* ID of an app.
|
|
360
|
+
* @format GUID
|
|
361
|
+
*/
|
|
296
362
|
appId?: string;
|
|
297
363
|
/** @readonly */
|
|
298
364
|
identityType?: WebhookIdentityType;
|
|
299
365
|
}
|
|
300
366
|
/** @oneof */
|
|
301
367
|
export interface IdentificationDataIdOneOf {
|
|
302
|
-
/**
|
|
368
|
+
/**
|
|
369
|
+
* ID of a site visitor that has not logged in to the site.
|
|
370
|
+
* @format GUID
|
|
371
|
+
*/
|
|
303
372
|
anonymousVisitorId?: string;
|
|
304
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* ID of a site visitor that has logged in to the site.
|
|
375
|
+
* @format GUID
|
|
376
|
+
*/
|
|
305
377
|
memberId?: string;
|
|
306
|
-
/**
|
|
378
|
+
/**
|
|
379
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
380
|
+
* @format GUID
|
|
381
|
+
*/
|
|
307
382
|
wixUserId?: string;
|
|
308
|
-
/**
|
|
383
|
+
/**
|
|
384
|
+
* ID of an app.
|
|
385
|
+
* @format GUID
|
|
386
|
+
*/
|
|
309
387
|
appId?: string;
|
|
310
388
|
}
|
|
311
389
|
export declare enum WebhookIdentityType {
|
|
@@ -356,6 +434,8 @@ export declare function updateProgramDefinition(_id: string | null, programDefin
|
|
|
356
434
|
export interface UpdateProgramDefinition {
|
|
357
435
|
/**
|
|
358
436
|
* Program definition ID.
|
|
437
|
+
* @format GUID
|
|
438
|
+
* @immutable
|
|
359
439
|
* @readonly
|
|
360
440
|
*/
|
|
361
441
|
_id?: string | null;
|
|
@@ -377,16 +457,28 @@ export interface UpdateProgramDefinition {
|
|
|
377
457
|
* @readonly
|
|
378
458
|
*/
|
|
379
459
|
_updatedDate?: Date | null;
|
|
380
|
-
/**
|
|
460
|
+
/**
|
|
461
|
+
* Name of the program associated with this program definition. This name will be the same for all programs provisioned from this program definition.
|
|
462
|
+
* @maxLength 64
|
|
463
|
+
*/
|
|
381
464
|
displayName?: string | null;
|
|
382
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* Application sub-module that represents the source of the program definition. Specified by the external developer. This namespace is used to handle and retrieve program definition and associated programs.
|
|
467
|
+
* @immutable
|
|
468
|
+
* @minLength 1
|
|
469
|
+
* @maxLength 50
|
|
470
|
+
*/
|
|
383
471
|
namespace?: string | null;
|
|
384
472
|
/**
|
|
385
473
|
* Custom field data for the program definition object.
|
|
386
474
|
* [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls.
|
|
387
475
|
*/
|
|
388
476
|
extendedFields?: ExtendedFields;
|
|
389
|
-
/**
|
|
477
|
+
/**
|
|
478
|
+
* External program definition ID designated by the app owner.
|
|
479
|
+
* @format GUID
|
|
480
|
+
* @immutable
|
|
481
|
+
*/
|
|
390
482
|
externalId?: string | null;
|
|
391
483
|
}
|
|
392
484
|
/**
|
|
@@ -420,6 +512,8 @@ export interface DeleteProgramDefinitionOptions {
|
|
|
420
512
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.MANAGE
|
|
421
513
|
* @permissionScope SCOPE.BENEFIT_PROGRAMS.READ
|
|
422
514
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.READ
|
|
515
|
+
* @permissionScope Manage Events
|
|
516
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
423
517
|
* @applicableIdentity APP
|
|
424
518
|
* @applicableIdentity VISITOR
|
|
425
519
|
* @returns Retrieved program definition.
|
|
@@ -441,13 +535,18 @@ export declare function getProgramDefinition(programDefinitionId: string): Promi
|
|
|
441
535
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.MANAGE
|
|
442
536
|
* @permissionScope SCOPE.BENEFIT_PROGRAMS.READ
|
|
443
537
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.READ
|
|
538
|
+
* @permissionScope Manage Events
|
|
539
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
444
540
|
* @applicableIdentity APP
|
|
445
541
|
* @applicableIdentity VISITOR
|
|
446
542
|
* @fqn wix.benefit_programs.v1.program_definition.ProgramDefinitionService.GetProgramDefinitionByExternalIdAndNamespace
|
|
447
543
|
*/
|
|
448
544
|
export declare function getProgramDefinitionByExternalIdAndNamespace(namespace: string, options: GetProgramDefinitionByExternalIdAndNamespaceOptions): Promise<GetProgramDefinitionByExternalIdAndNamespaceResponse>;
|
|
449
545
|
export interface GetProgramDefinitionByExternalIdAndNamespaceOptions {
|
|
450
|
-
/**
|
|
546
|
+
/**
|
|
547
|
+
* External program definition ID.
|
|
548
|
+
* @format GUID
|
|
549
|
+
*/
|
|
451
550
|
externalId: string;
|
|
452
551
|
}
|
|
453
552
|
/**
|
|
@@ -466,6 +565,8 @@ export interface GetProgramDefinitionByExternalIdAndNamespaceOptions {
|
|
|
466
565
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.MANAGE
|
|
467
566
|
* @permissionScope SCOPE.BENEFIT_PROGRAMS.READ
|
|
468
567
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.READ
|
|
568
|
+
* @permissionScope Manage Events
|
|
569
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
469
570
|
* @permissionId BENEFIT_PROGRAMS.PROGRAM_DEFINITION_READ
|
|
470
571
|
* @applicableIdentity APP
|
|
471
572
|
* @applicableIdentity VISITOR
|
package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.js
CHANGED
|
@@ -202,6 +202,8 @@ exports.deleteProgramDefinition = deleteProgramDefinition;
|
|
|
202
202
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.MANAGE
|
|
203
203
|
* @permissionScope SCOPE.BENEFIT_PROGRAMS.READ
|
|
204
204
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.READ
|
|
205
|
+
* @permissionScope Manage Events
|
|
206
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
205
207
|
* @applicableIdentity APP
|
|
206
208
|
* @applicableIdentity VISITOR
|
|
207
209
|
* @returns Retrieved program definition.
|
|
@@ -247,6 +249,8 @@ exports.getProgramDefinition = getProgramDefinition;
|
|
|
247
249
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.MANAGE
|
|
248
250
|
* @permissionScope SCOPE.BENEFIT_PROGRAMS.READ
|
|
249
251
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.READ
|
|
252
|
+
* @permissionScope Manage Events
|
|
253
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
250
254
|
* @applicableIdentity APP
|
|
251
255
|
* @applicableIdentity VISITOR
|
|
252
256
|
* @fqn wix.benefit_programs.v1.program_definition.ProgramDefinitionService.GetProgramDefinitionByExternalIdAndNamespace
|
|
@@ -295,6 +299,8 @@ exports.getProgramDefinitionByExternalIdAndNamespace = getProgramDefinitionByExt
|
|
|
295
299
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.MANAGE
|
|
296
300
|
* @permissionScope SCOPE.BENEFIT_PROGRAMS.READ
|
|
297
301
|
* @permissionScopeId SCOPE.BENEFIT_PROGRAMS.READ
|
|
302
|
+
* @permissionScope Manage Events
|
|
303
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
298
304
|
* @permissionId BENEFIT_PROGRAMS.PROGRAM_DEFINITION_READ
|
|
299
305
|
* @applicableIdentity APP
|
|
300
306
|
* @applicableIdentity VISITOR
|
package/build/cjs/src/benefit-programs-v1-program-definition-program-definitions.universal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"benefit-programs-v1-program-definition-program-definitions.universal.js","sourceRoot":"","sources":["../../../src/benefit-programs-v1-program-definition-program-definitions.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,sJAAwI;
|
|
1
|
+
{"version":3,"file":"benefit-programs-v1-program-definition-program-definitions.universal.js","sourceRoot":"","sources":["../../../src/benefit-programs-v1-program-definition-program-definitions.universal.ts"],"names":[],"mappings":"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"}
|