@wix/identity 1.0.61 → 1.0.62
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/identity-oauth-v1-refresh-token.public.d.ts +1 -1
- package/build/cjs/src/identity-oauth-v1-refresh-token.types.d.ts +0 -65
- package/build/cjs/src/identity-oauth-v1-refresh-token.universal.d.ts +0 -65
- package/build/cjs/src/identity-oauth-v1-refresh-token.universal.js.map +1 -1
- package/build/es/src/identity-oauth-v1-refresh-token.public.d.ts +1 -1
- package/build/es/src/identity-oauth-v1-refresh-token.types.d.ts +0 -65
- package/build/es/src/identity-oauth-v1-refresh-token.universal.d.ts +0 -65
- package/build/es/src/identity-oauth-v1-refresh-token.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -8,4 +8,4 @@ export declare function token(httpClient: HttpClient): (options?: TokenOptions |
|
|
|
8
8
|
export declare function deviceCode(httpClient: HttpClient): (options?: DeviceCodeOptions | undefined) => Promise<import("./identity-oauth-v1-refresh-token.universal").DeviceCodeResponse & import("./identity-oauth-v1-refresh-token.universal").DeviceCodeResponseNonNullableFields>;
|
|
9
9
|
export declare function deviceVerify(httpClient: HttpClient): (options?: DeviceVerifyOptions | undefined) => Promise<void>;
|
|
10
10
|
export declare function revokeRefreshToken(httpClient: HttpClient): (options?: RevokeRefreshTokenOptions | undefined) => Promise<void>;
|
|
11
|
-
export { RefreshToken, AuthorizeRequest, RawHttpResponse, HeadersEntry, RawHttpRequest, PathParametersEntry, QueryParametersEntry, DeviceCodeRequest, DeviceCodeResponse, DeviceVerifyRequest, DeviceVerifyResponse, InvalidateUserCodeRequest, InvalidateUserCodeResponse, RevokeRefreshTokenRequest, RevokeRefreshTokenResponse, Empty,
|
|
11
|
+
export { RefreshToken, AuthorizeRequest, RawHttpResponse, HeadersEntry, RawHttpRequest, PathParametersEntry, QueryParametersEntry, DeviceCodeRequest, DeviceCodeResponse, DeviceVerifyRequest, DeviceVerifyResponse, InvalidateUserCodeRequest, InvalidateUserCodeResponse, RevokeRefreshTokenRequest, RevokeRefreshTokenResponse, Empty, RawHttpResponseNonNullableFields, DeviceCodeResponseNonNullableFields, AuthorizeOptions, TokenOptions, DeviceCodeOptions, DeviceVerifyOptions, RevokeRefreshTokenOptions, } from './identity-oauth-v1-refresh-token.universal';
|
|
@@ -124,71 +124,6 @@ export interface RevokeRefreshTokenResponse {
|
|
|
124
124
|
}
|
|
125
125
|
export interface Empty {
|
|
126
126
|
}
|
|
127
|
-
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
128
|
-
createdEvent?: EntityCreatedEvent;
|
|
129
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
130
|
-
deletedEvent?: EntityDeletedEvent;
|
|
131
|
-
actionEvent?: ActionEvent;
|
|
132
|
-
/**
|
|
133
|
-
* Unique event ID.
|
|
134
|
-
* Allows clients to ignore duplicate webhooks.
|
|
135
|
-
*/
|
|
136
|
-
id?: string;
|
|
137
|
-
/**
|
|
138
|
-
* Assumes actions are also always typed to an entity_type
|
|
139
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
140
|
-
*/
|
|
141
|
-
entityFqdn?: string;
|
|
142
|
-
/**
|
|
143
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
144
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
145
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
146
|
-
*/
|
|
147
|
-
slug?: string;
|
|
148
|
-
/** ID of the entity associated with the event. */
|
|
149
|
-
entityId?: string;
|
|
150
|
-
/** Event timestamp. */
|
|
151
|
-
eventTime?: Date;
|
|
152
|
-
/**
|
|
153
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
154
|
-
* (for example, GDPR).
|
|
155
|
-
*/
|
|
156
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
157
|
-
/** If present, indicates the action that triggered the event. */
|
|
158
|
-
originatedFrom?: string | null;
|
|
159
|
-
/**
|
|
160
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
161
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
162
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
163
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
164
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
165
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
166
|
-
*/
|
|
167
|
-
entityEventSequence?: string | null;
|
|
168
|
-
}
|
|
169
|
-
/** @oneof */
|
|
170
|
-
export interface DomainEventBodyOneOf {
|
|
171
|
-
createdEvent?: EntityCreatedEvent;
|
|
172
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
173
|
-
deletedEvent?: EntityDeletedEvent;
|
|
174
|
-
actionEvent?: ActionEvent;
|
|
175
|
-
}
|
|
176
|
-
export interface EntityCreatedEvent {
|
|
177
|
-
entityAsJson?: string;
|
|
178
|
-
}
|
|
179
|
-
export interface EntityUpdatedEvent {
|
|
180
|
-
/**
|
|
181
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
182
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
183
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
184
|
-
*/
|
|
185
|
-
currentEntityAsJson?: string;
|
|
186
|
-
}
|
|
187
|
-
export interface EntityDeletedEvent {
|
|
188
|
-
}
|
|
189
|
-
export interface ActionEvent {
|
|
190
|
-
bodyAsJson?: string;
|
|
191
|
-
}
|
|
192
127
|
export interface RawHttpResponseNonNullableFields {
|
|
193
128
|
body: Uint8Array;
|
|
194
129
|
headers: {
|
|
@@ -130,71 +130,6 @@ export interface RevokeRefreshTokenResponse {
|
|
|
130
130
|
}
|
|
131
131
|
export interface Empty {
|
|
132
132
|
}
|
|
133
|
-
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
134
|
-
createdEvent?: EntityCreatedEvent;
|
|
135
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
136
|
-
deletedEvent?: EntityDeletedEvent;
|
|
137
|
-
actionEvent?: ActionEvent;
|
|
138
|
-
/**
|
|
139
|
-
* Unique event ID.
|
|
140
|
-
* Allows clients to ignore duplicate webhooks.
|
|
141
|
-
*/
|
|
142
|
-
_id?: string;
|
|
143
|
-
/**
|
|
144
|
-
* Assumes actions are also always typed to an entity_type
|
|
145
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
146
|
-
*/
|
|
147
|
-
entityFqdn?: string;
|
|
148
|
-
/**
|
|
149
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
150
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
151
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
152
|
-
*/
|
|
153
|
-
slug?: string;
|
|
154
|
-
/** ID of the entity associated with the event. */
|
|
155
|
-
entityId?: string;
|
|
156
|
-
/** Event timestamp. */
|
|
157
|
-
eventTime?: Date;
|
|
158
|
-
/**
|
|
159
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
160
|
-
* (for example, GDPR).
|
|
161
|
-
*/
|
|
162
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
163
|
-
/** If present, indicates the action that triggered the event. */
|
|
164
|
-
originatedFrom?: string | null;
|
|
165
|
-
/**
|
|
166
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
167
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
168
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
169
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
170
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
171
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
172
|
-
*/
|
|
173
|
-
entityEventSequence?: string | null;
|
|
174
|
-
}
|
|
175
|
-
/** @oneof */
|
|
176
|
-
export interface DomainEventBodyOneOf {
|
|
177
|
-
createdEvent?: EntityCreatedEvent;
|
|
178
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
179
|
-
deletedEvent?: EntityDeletedEvent;
|
|
180
|
-
actionEvent?: ActionEvent;
|
|
181
|
-
}
|
|
182
|
-
export interface EntityCreatedEvent {
|
|
183
|
-
entityAsJson?: string;
|
|
184
|
-
}
|
|
185
|
-
export interface EntityUpdatedEvent {
|
|
186
|
-
/**
|
|
187
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
188
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
189
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
190
|
-
*/
|
|
191
|
-
currentEntityAsJson?: string;
|
|
192
|
-
}
|
|
193
|
-
export interface EntityDeletedEvent {
|
|
194
|
-
}
|
|
195
|
-
export interface ActionEvent {
|
|
196
|
-
bodyAsJson?: string;
|
|
197
|
-
}
|
|
198
133
|
export interface RawHttpResponseNonNullableFields {
|
|
199
134
|
body: Uint8Array;
|
|
200
135
|
headers: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-oauth-v1-refresh-token.universal.js","sourceRoot":"","sources":["../../../src/identity-oauth-v1-refresh-token.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAqE;AAErE,iHAAmG;AAEnG,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"identity-oauth-v1-refresh-token.universal.js","sourceRoot":"","sources":["../../../src/identity-oauth-v1-refresh-token.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,4 +8,4 @@ export declare function token(httpClient: HttpClient): (options?: TokenOptions |
|
|
|
8
8
|
export declare function deviceCode(httpClient: HttpClient): (options?: DeviceCodeOptions | undefined) => Promise<import("./identity-oauth-v1-refresh-token.universal").DeviceCodeResponse & import("./identity-oauth-v1-refresh-token.universal").DeviceCodeResponseNonNullableFields>;
|
|
9
9
|
export declare function deviceVerify(httpClient: HttpClient): (options?: DeviceVerifyOptions | undefined) => Promise<void>;
|
|
10
10
|
export declare function revokeRefreshToken(httpClient: HttpClient): (options?: RevokeRefreshTokenOptions | undefined) => Promise<void>;
|
|
11
|
-
export { RefreshToken, AuthorizeRequest, RawHttpResponse, HeadersEntry, RawHttpRequest, PathParametersEntry, QueryParametersEntry, DeviceCodeRequest, DeviceCodeResponse, DeviceVerifyRequest, DeviceVerifyResponse, InvalidateUserCodeRequest, InvalidateUserCodeResponse, RevokeRefreshTokenRequest, RevokeRefreshTokenResponse, Empty,
|
|
11
|
+
export { RefreshToken, AuthorizeRequest, RawHttpResponse, HeadersEntry, RawHttpRequest, PathParametersEntry, QueryParametersEntry, DeviceCodeRequest, DeviceCodeResponse, DeviceVerifyRequest, DeviceVerifyResponse, InvalidateUserCodeRequest, InvalidateUserCodeResponse, RevokeRefreshTokenRequest, RevokeRefreshTokenResponse, Empty, RawHttpResponseNonNullableFields, DeviceCodeResponseNonNullableFields, AuthorizeOptions, TokenOptions, DeviceCodeOptions, DeviceVerifyOptions, RevokeRefreshTokenOptions, } from './identity-oauth-v1-refresh-token.universal';
|
|
@@ -124,71 +124,6 @@ export interface RevokeRefreshTokenResponse {
|
|
|
124
124
|
}
|
|
125
125
|
export interface Empty {
|
|
126
126
|
}
|
|
127
|
-
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
128
|
-
createdEvent?: EntityCreatedEvent;
|
|
129
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
130
|
-
deletedEvent?: EntityDeletedEvent;
|
|
131
|
-
actionEvent?: ActionEvent;
|
|
132
|
-
/**
|
|
133
|
-
* Unique event ID.
|
|
134
|
-
* Allows clients to ignore duplicate webhooks.
|
|
135
|
-
*/
|
|
136
|
-
id?: string;
|
|
137
|
-
/**
|
|
138
|
-
* Assumes actions are also always typed to an entity_type
|
|
139
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
140
|
-
*/
|
|
141
|
-
entityFqdn?: string;
|
|
142
|
-
/**
|
|
143
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
144
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
145
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
146
|
-
*/
|
|
147
|
-
slug?: string;
|
|
148
|
-
/** ID of the entity associated with the event. */
|
|
149
|
-
entityId?: string;
|
|
150
|
-
/** Event timestamp. */
|
|
151
|
-
eventTime?: Date;
|
|
152
|
-
/**
|
|
153
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
154
|
-
* (for example, GDPR).
|
|
155
|
-
*/
|
|
156
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
157
|
-
/** If present, indicates the action that triggered the event. */
|
|
158
|
-
originatedFrom?: string | null;
|
|
159
|
-
/**
|
|
160
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
161
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
162
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
163
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
164
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
165
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
166
|
-
*/
|
|
167
|
-
entityEventSequence?: string | null;
|
|
168
|
-
}
|
|
169
|
-
/** @oneof */
|
|
170
|
-
export interface DomainEventBodyOneOf {
|
|
171
|
-
createdEvent?: EntityCreatedEvent;
|
|
172
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
173
|
-
deletedEvent?: EntityDeletedEvent;
|
|
174
|
-
actionEvent?: ActionEvent;
|
|
175
|
-
}
|
|
176
|
-
export interface EntityCreatedEvent {
|
|
177
|
-
entityAsJson?: string;
|
|
178
|
-
}
|
|
179
|
-
export interface EntityUpdatedEvent {
|
|
180
|
-
/**
|
|
181
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
182
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
183
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
184
|
-
*/
|
|
185
|
-
currentEntityAsJson?: string;
|
|
186
|
-
}
|
|
187
|
-
export interface EntityDeletedEvent {
|
|
188
|
-
}
|
|
189
|
-
export interface ActionEvent {
|
|
190
|
-
bodyAsJson?: string;
|
|
191
|
-
}
|
|
192
127
|
export interface RawHttpResponseNonNullableFields {
|
|
193
128
|
body: Uint8Array;
|
|
194
129
|
headers: {
|
|
@@ -130,71 +130,6 @@ export interface RevokeRefreshTokenResponse {
|
|
|
130
130
|
}
|
|
131
131
|
export interface Empty {
|
|
132
132
|
}
|
|
133
|
-
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
134
|
-
createdEvent?: EntityCreatedEvent;
|
|
135
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
136
|
-
deletedEvent?: EntityDeletedEvent;
|
|
137
|
-
actionEvent?: ActionEvent;
|
|
138
|
-
/**
|
|
139
|
-
* Unique event ID.
|
|
140
|
-
* Allows clients to ignore duplicate webhooks.
|
|
141
|
-
*/
|
|
142
|
-
_id?: string;
|
|
143
|
-
/**
|
|
144
|
-
* Assumes actions are also always typed to an entity_type
|
|
145
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
146
|
-
*/
|
|
147
|
-
entityFqdn?: string;
|
|
148
|
-
/**
|
|
149
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
150
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
151
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
152
|
-
*/
|
|
153
|
-
slug?: string;
|
|
154
|
-
/** ID of the entity associated with the event. */
|
|
155
|
-
entityId?: string;
|
|
156
|
-
/** Event timestamp. */
|
|
157
|
-
eventTime?: Date;
|
|
158
|
-
/**
|
|
159
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
160
|
-
* (for example, GDPR).
|
|
161
|
-
*/
|
|
162
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
163
|
-
/** If present, indicates the action that triggered the event. */
|
|
164
|
-
originatedFrom?: string | null;
|
|
165
|
-
/**
|
|
166
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
167
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
168
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
169
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
170
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
171
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
172
|
-
*/
|
|
173
|
-
entityEventSequence?: string | null;
|
|
174
|
-
}
|
|
175
|
-
/** @oneof */
|
|
176
|
-
export interface DomainEventBodyOneOf {
|
|
177
|
-
createdEvent?: EntityCreatedEvent;
|
|
178
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
179
|
-
deletedEvent?: EntityDeletedEvent;
|
|
180
|
-
actionEvent?: ActionEvent;
|
|
181
|
-
}
|
|
182
|
-
export interface EntityCreatedEvent {
|
|
183
|
-
entityAsJson?: string;
|
|
184
|
-
}
|
|
185
|
-
export interface EntityUpdatedEvent {
|
|
186
|
-
/**
|
|
187
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
188
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
189
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
190
|
-
*/
|
|
191
|
-
currentEntityAsJson?: string;
|
|
192
|
-
}
|
|
193
|
-
export interface EntityDeletedEvent {
|
|
194
|
-
}
|
|
195
|
-
export interface ActionEvent {
|
|
196
|
-
bodyAsJson?: string;
|
|
197
|
-
}
|
|
198
133
|
export interface RawHttpResponseNonNullableFields {
|
|
199
134
|
body: Uint8Array;
|
|
200
135
|
headers: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-oauth-v1-refresh-token.universal.js","sourceRoot":"","sources":["../../../src/identity-oauth-v1-refresh-token.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAErE,OAAO,KAAK,wCAAwC,MAAM,wCAAwC,CAAC;AAEnG,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"identity-oauth-v1-refresh-token.universal.js","sourceRoot":"","sources":["../../../src/identity-oauth-v1-refresh-token.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAErE,OAAO,KAAK,wCAAwC,MAAM,wCAAwC,CAAC;AAEnG,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAwJ5B,MAAM,iBAAiB,GAAG,EAAE,CAAC;AAC7B,MAAM,kBAAkB,GAAG,EAAE,CAAC;AAC9B,MAAM,mBAAmB,GAAG,EAAE,CAAC;AAC/B,MAAM,oBAAoB,GAAG,EAAE,CAAC;AAChC,MAAM,qBAAqB,GAAG,EAAE,CAAC;AACjC,MAAM,eAAe,GAAG,EAAE,CAAC;AAC3B,MAAM,gBAAgB,GAAG,EAAE,CAAC;AAC5B,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,2BAA2B,GAAG,EAAE,CAAC;AAEvC;;GAEG;AACH,MAAM,UAAgB,SAAS,CAC7B,OAA0B;;;QAE1B,MAAM,qBAAqB,GAAG;YAC5B,QAAQ,EAAE,eAAe;YACzB,YAAY,EAAE,mBAAmB;YACjC,WAAW,EAAE,kBAAkB;YAC/B,KAAK,EAAE,YAAY;YACnB,KAAK,EAAE,YAAY;YACnB,YAAY,EAAE,mBAAmB;YACjC,aAAa,EAAE,oBAAoB;YACnC,mBAAmB,EAAE,0BAA0B;YAC/C,YAAY,EAAE,mBAAmB;SAClC,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,iBAAiB;YAC7B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,gBAAgB;YAC5B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;QAE/C,MAAM,OAAO,GAAG,wCAAwC,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;QAE5E,KAAK,CAAC,qCAAqC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEjE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAuDD;;;;;GAKG;AACH,MAAM,UAAgB,KAAK,CACzB,OAAsB;;;QAEtB,MAAM,qBAAqB,GAAG;YAC5B,IAAI,EAAE,WAAW;YACjB,UAAU,EAAE,iBAAiB;YAC7B,WAAW,EAAE,kBAAkB;YAC/B,OAAO,EAAE,cAAc;YACvB,MAAM,EAAE,aAAa;YACrB,OAAO,EAAE,cAAc;YACvB,QAAQ,EAAE,eAAe;SAC1B,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,eAAe;YAC3B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,gBAAgB;YAC5B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;QAE/C,MAAM,OAAO,GAAG,wCAAwC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QAExE,KAAK,CAAC,iCAAiC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAE7D,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAYD;;;;GAIG;AACH,MAAM,UAAgB,UAAU,CAC9B,OAA2B;;;QAE3B,MAAM,qBAAqB,GAAG;YAC5B,QAAQ,EAAE,eAAe;YACzB,KAAK,EAAE,YAAY;SACpB,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,kBAAkB;YAC9B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,mBAAmB;YAC/B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;QAE/C,MAAM,OAAO,GAAG,wCAAwC,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;QAE7E,KAAK,CAAC,sCAAsC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAElE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAYD;;;;GAIG;AACH,MAAM,UAAgB,YAAY,CAChC,OAA6B;;;QAE7B,MAAM,qBAAqB,GAAG,EAAE,QAAQ,EAAE,eAAe,EAAE,CAAC;QAC5D,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,oBAAoB;YAChC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,qBAAqB;YACjC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;QAE/C,MAAM,OAAO,GACX,wCAAwC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAEjE,KAAK,CAAC,wCAAwC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEpE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAOD;;;;GAIG;AACH,MAAM,UAAgB,kBAAkB,CACtC,OAAmC;;;QAEnC,MAAM,qBAAqB,GAAG,EAAE,KAAK,EAAE,YAAY,EAAE,CAAC;QACtD,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,0BAA0B;YACtC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,2BAA2B;YACvC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;QAE/C,MAAM,OAAO,GACX,wCAAwC,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;QAEvE,KAAK,CAAC,8CAA8C,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAE1E,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/identity",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.62",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
|
-
"falconPackageHash": "
|
|
37
|
+
"falconPackageHash": "7b15b5c721791ea91f3c3ccde80ca1a550af1ed3c7a6f711a7f85971"
|
|
38
38
|
}
|