@microsoft/msgraph-sdk-print 1.0.0-preview.20 → 1.0.0-preview.21
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/package.json +3 -3
- package/print/connectors/index.d.ts +3 -4
- package/print/connectors/index.d.ts.map +1 -1
- package/print/connectors/item/index.d.ts +7 -10
- package/print/connectors/item/index.d.ts.map +1 -1
- package/print/operations/index.d.ts +3 -3
- package/print/operations/item/index.d.ts +3 -4
- package/print/operations/item/index.d.ts.map +1 -1
- package/print/printers/index.d.ts +3 -4
- package/print/printers/index.d.ts.map +1 -1
- package/print/printers/item/connectors/index.d.ts +3 -4
- package/print/printers/item/connectors/index.d.ts.map +1 -1
- package/print/printers/item/index.d.ts +7 -10
- package/print/printers/item/index.d.ts.map +1 -1
- package/print/printers/item/shares/index.d.ts +3 -4
- package/print/printers/item/shares/index.d.ts.map +1 -1
- package/print/printers/item/taskTriggers/index.d.ts +5 -7
- package/print/printers/item/taskTriggers/index.d.ts.map +1 -1
- package/print/printers/item/taskTriggers/item/index.d.ts +5 -7
- package/print/printers/item/taskTriggers/item/index.d.ts.map +1 -1
- package/print/services/index.d.ts +3 -4
- package/print/services/index.d.ts.map +1 -1
- package/print/services/item/endpoints/index.d.ts +3 -4
- package/print/services/item/endpoints/index.d.ts.map +1 -1
- package/print/services/item/endpoints/item/index.d.ts +3 -4
- package/print/services/item/endpoints/item/index.d.ts.map +1 -1
- package/print/services/item/index.d.ts +3 -4
- package/print/services/item/index.d.ts.map +1 -1
- package/print/shares/index.d.ts +5 -7
- package/print/shares/index.d.ts.map +1 -1
- package/print/shares/item/allowedGroups/index.d.ts +3 -4
- package/print/shares/item/allowedGroups/index.d.ts.map +1 -1
- package/print/shares/item/allowedGroups/item/ref/index.d.ts +2 -3
- package/print/shares/item/allowedGroups/item/ref/index.d.ts.map +1 -1
- package/print/shares/item/allowedGroups/ref/index.d.ts +8 -11
- package/print/shares/item/allowedGroups/ref/index.d.ts.map +1 -1
- package/print/shares/item/allowedUsers/index.d.ts +3 -4
- package/print/shares/item/allowedUsers/index.d.ts.map +1 -1
- package/print/shares/item/allowedUsers/item/ref/index.d.ts +2 -3
- package/print/shares/item/allowedUsers/item/ref/index.d.ts.map +1 -1
- package/print/shares/item/allowedUsers/ref/index.d.ts +8 -11
- package/print/shares/item/allowedUsers/ref/index.d.ts.map +1 -1
- package/print/shares/item/index.d.ts +7 -10
- package/print/shares/item/index.d.ts.map +1 -1
- package/print/taskDefinitions/index.d.ts +5 -7
- package/print/taskDefinitions/index.d.ts.map +1 -1
- package/print/taskDefinitions/item/index.d.ts +7 -10
- package/print/taskDefinitions/item/index.d.ts.map +1 -1
- package/print/taskDefinitions/item/tasks/index.d.ts +3 -4
- package/print/taskDefinitions/item/tasks/index.d.ts.map +1 -1
- package/print/taskDefinitions/item/tasks/item/index.d.ts +5 -7
- package/print/taskDefinitions/item/tasks/item/index.d.ts.map +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -10,43 +10,40 @@ export interface PrintTaskDefinitionItemRequestBuilder extends BaseRequestBuilde
|
|
|
10
10
|
*/
|
|
11
11
|
get tasks(): TasksRequestBuilder;
|
|
12
12
|
/**
|
|
13
|
-
* Delete
|
|
13
|
+
* Delete navigation property taskDefinitions for print
|
|
14
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
15
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
16
|
-
* @see {@link https://learn.microsoft.com/graph/api/print-delete-taskdefinition?view=graph-rest-1.0|Find more info here}
|
|
17
16
|
*/
|
|
18
17
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
19
18
|
/**
|
|
20
|
-
*
|
|
19
|
+
* List of abstract definition for a task that can be triggered when various events occur within Universal Print.
|
|
21
20
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
21
|
* @returns {Promise<PrintTaskDefinition>}
|
|
23
22
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/printtaskdefinition-get?view=graph-rest-1.0|Find more info here}
|
|
25
23
|
*/
|
|
26
24
|
get(requestConfiguration?: RequestConfiguration<PrintTaskDefinitionItemRequestBuilderGetQueryParameters> | undefined): Promise<PrintTaskDefinition | undefined>;
|
|
27
25
|
/**
|
|
28
|
-
* Update
|
|
26
|
+
* Update the navigation property taskDefinitions in print
|
|
29
27
|
* @param body The request body
|
|
30
28
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
29
|
* @returns {Promise<PrintTaskDefinition>}
|
|
32
30
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/print-update-taskdefinition?view=graph-rest-1.0|Find more info here}
|
|
34
31
|
*/
|
|
35
32
|
patch(body: PrintTaskDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PrintTaskDefinition | undefined>;
|
|
36
33
|
/**
|
|
37
|
-
* Delete
|
|
34
|
+
* Delete navigation property taskDefinitions for print
|
|
38
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
36
|
* @returns {RequestInformation}
|
|
40
37
|
*/
|
|
41
38
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
42
39
|
/**
|
|
43
|
-
*
|
|
40
|
+
* List of abstract definition for a task that can be triggered when various events occur within Universal Print.
|
|
44
41
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
45
42
|
* @returns {RequestInformation}
|
|
46
43
|
*/
|
|
47
44
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PrintTaskDefinitionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
48
45
|
/**
|
|
49
|
-
* Update
|
|
46
|
+
* Update the navigation property taskDefinitions in print
|
|
50
47
|
* @param body The request body
|
|
51
48
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
52
49
|
* @returns {RequestInformation}
|
|
@@ -54,7 +51,7 @@ export interface PrintTaskDefinitionItemRequestBuilder extends BaseRequestBuilde
|
|
|
54
51
|
toPatchRequestInformation(body: PrintTaskDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
55
52
|
}
|
|
56
53
|
/**
|
|
57
|
-
*
|
|
54
|
+
* List of abstract definition for a task that can be triggered when various events occur within Universal Print.
|
|
58
55
|
*/
|
|
59
56
|
export interface PrintTaskDefinitionItemRequestBuilderGetQueryParameters {
|
|
60
57
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiF,KAAK,mBAAmB,EAAE,MAAM,gCAAgC,CAAC;AAIzJ,OAAO,EAA8E,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEhI,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiF,KAAK,mBAAmB,EAAE,MAAM,gCAAgC,CAAC;AAIzJ,OAAO,EAA8E,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEhI,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAAC;IAClK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,mBAAmB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAAC;IAC9I;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,mBAAmB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/I;AACD;;GAEG;AACH,MAAM,WAAW,uDAAuD;IACpE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gDAAgD,sFAAsF,CAAC;AAQpJ;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qCAAqC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAKxL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qDAAqD,EAAE,gBA+BnE,CAAC"}
|
|
@@ -17,11 +17,10 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
17
17
|
*/
|
|
18
18
|
byPrintTaskId(printTaskId: string): PrintTaskItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<PrintTaskCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/printtaskdefinition-list-tasks?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<TasksRequestBuilderGetQueryParameters> | undefined): Promise<PrintTaskCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
@@ -33,7 +32,7 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
33
32
|
*/
|
|
34
33
|
post(body: PrintTask, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PrintTask | undefined>;
|
|
35
34
|
/**
|
|
36
|
-
*
|
|
35
|
+
* A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.
|
|
37
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
37
|
* @returns {RequestInformation}
|
|
39
38
|
*/
|
|
@@ -47,7 +46,7 @@ export interface TasksRequestBuilder extends BaseRequestBuilder<TasksRequestBuil
|
|
|
47
46
|
toPostRequestInformation(body: PrintTask, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
48
47
|
}
|
|
49
48
|
/**
|
|
50
|
-
*
|
|
49
|
+
* A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.
|
|
51
50
|
*/
|
|
52
51
|
export interface TasksRequestBuilderGetQueryParameters {
|
|
53
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAsH,KAAK,SAAS,EAAE,KAAK,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAItN,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAEvJ,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,aAAa,CAAC,WAAW,EAAE,MAAM,GAAI,2BAA2B,CAAC;IAClE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAsH,KAAK,SAAS,EAAE,KAAK,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAItN,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAEvJ,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,aAAa,CAAC,WAAW,EAAE,MAAM,GAAI,2BAA2B,CAAC;IAClE;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IACxJ;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IACzH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9I;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpI;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,mJAAmJ,CAAC;AAc/L;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mBAAmB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASpJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAuBjD,CAAC"}
|
|
@@ -21,20 +21,18 @@ export interface PrintTaskItemRequestBuilder extends BaseRequestBuilder<PrintTas
|
|
|
21
21
|
*/
|
|
22
22
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.
|
|
25
25
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
26
|
* @returns {Promise<PrintTask>}
|
|
27
27
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
28
|
-
* @see {@link https://learn.microsoft.com/graph/api/printtask-get?view=graph-rest-1.0|Find more info here}
|
|
29
28
|
*/
|
|
30
29
|
get(requestConfiguration?: RequestConfiguration<PrintTaskItemRequestBuilderGetQueryParameters> | undefined): Promise<PrintTask | undefined>;
|
|
31
30
|
/**
|
|
32
|
-
* Update
|
|
31
|
+
* Update the navigation property tasks in print
|
|
33
32
|
* @param body The request body
|
|
34
33
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
35
34
|
* @returns {Promise<PrintTask>}
|
|
36
35
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
37
|
-
* @see {@link https://learn.microsoft.com/graph/api/printtaskdefinition-update-task?view=graph-rest-1.0|Find more info here}
|
|
38
36
|
*/
|
|
39
37
|
patch(body: PrintTask, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PrintTask | undefined>;
|
|
40
38
|
/**
|
|
@@ -44,13 +42,13 @@ export interface PrintTaskItemRequestBuilder extends BaseRequestBuilder<PrintTas
|
|
|
44
42
|
*/
|
|
45
43
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
46
44
|
/**
|
|
47
|
-
*
|
|
45
|
+
* A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.
|
|
48
46
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
49
47
|
* @returns {RequestInformation}
|
|
50
48
|
*/
|
|
51
49
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PrintTaskItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
52
50
|
/**
|
|
53
|
-
* Update
|
|
51
|
+
* Update the navigation property tasks in print
|
|
54
52
|
* @param body The request body
|
|
55
53
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
56
54
|
* @returns {RequestInformation}
|
|
@@ -58,7 +56,7 @@ export interface PrintTaskItemRequestBuilder extends BaseRequestBuilder<PrintTas
|
|
|
58
56
|
toPatchRequestInformation(body: PrintTask, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
59
57
|
}
|
|
60
58
|
/**
|
|
61
|
-
*
|
|
59
|
+
* A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.
|
|
62
60
|
*/
|
|
63
61
|
export interface PrintTaskItemRequestBuilderGetQueryParameters {
|
|
64
62
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6D,KAAK,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAI3H,OAAO,EAA4C,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAExG,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAE/F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;IAC3C;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6D,KAAK,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAI3H,OAAO,EAA4C,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAExG,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAE/F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;IAC3C;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC9I;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAC1H;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrI;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,sCAAsC,6GAA6G,CAAC;AAQjK;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAOpK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBA+BzD,CAAC"}
|